forked from liangrengongzuoshi/liangzai.pub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.39 KB
/
index.html
File metadata and controls
34 lines (30 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
title: 良仔的博客
---
<div id="article" aos="zoom-in">
<h1 align="center"><span>时光</span>荏苒</h1>
<canvas id="time" width="200" height="200"></canvas>
<div class="time-h3 moatext_lens"><h3 align="center">If the time goes back, what's your choice?</h3></div>
</div>
<script src="{{ site.baseurl }}/js/time.js"></script>
<script src="{{ site.baseurl }}/js/jquery.moatext-min.js"></script>
<!--<canvas id="welcome"></canvas>
<script src="{{ site.baseurl }}/js/welcome.js"></script>-->
<script type="text/javascript">
function browserRedirect() {
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
var bIsAndroid = sUserAgent.match(/android/i) == "android";
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
if (bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM){
alert("请登录PC端查看全部功能~");
// window.location.href="{{ site.baseurl }}/blog.html";
}
}
browserRedirect();
</script>