-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (97 loc) · 3.23 KB
/
index.html
File metadata and controls
109 lines (97 loc) · 3.23 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>环元 - 让你与梦想更接近</title>
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link href="CSS/style.css" rel="stylesheet"/>
<link href="CSS/search.css" rel="stylesheet"/>
<link href="CSS/roll.css" rel="stylesheet"/>
<link href="CSS/font-awesome.min.css" rel="stylesheet"/>
<script src="js/jquery-3.1.1.min.js"></script>
<body>
<!--搜索框-->
<div class="search d3"><div class="logo">
<img src="img/ico/HY LOGO.png" ></div>
<form>
<input type="text" placeholder="搜索从这里开始...">
<button type="submit"></button>
</form>
<div id="time" style="color:#99CCFF" ></div>
</div>
<div class="nav">
<ul_1 class="none">
<li><a href="sign.html">环元账号</a></li>
<li><a href="plant.html">环元星球</a></li>
<li><a href="wait.html">环元小游戏</a></li>
<li><a href="index2.html">环元国际版</a></li>
<li><a href="wait.html">加入环元</a></li>
<li><a href="city services.html">星球服务</a></li>
</ul>
</div>
</div>
<!--轮播-->
<script src="js/roll.js" type="text/javascript"></script>
<div class="box">
<div class="list">
<li_1 class="p7"><a href="#"><img src="img/1.jpg" alt="" /></a></li_1>
<li_1 class="p6"><a href="#"><img src="img/2.jpg" alt="" /></a></li_1>
<li_1 class="p5"><a href="#"><img src="img/3.jpg" alt="" /></a></li_1>
<li_1 class="p4"><a href="#"><img src="img/4.jpg" alt="" /></a></li_1>
<li_1 class="p3"><a href="#"><img src="img/5.jpg" alt="" /></a></li_1>
<li_1 class="p2"><a href="#"><img src="img/6.jpg" alt="" /></a></li_1>
<li_1 class="p1"><a href="#"><img src="img/7.jpg" alt="" /></a></li_1>
</div>
<a href="javascript:;" class="prev btn"><</a>
<a href="javascript:;" class="next btn">></a>
<div class="buttons">
<a href="javascript:;"><span class="blue"></span></a>
<a href="javascript:;"><span></span></a>
<a href="javascript:;"><span></span></a>
<a href="javascript:;"><span></span></a>
<a href="javascript:;"><span></span></a>
<a href="javascript:;"><span></span></a>
<a href="javascript:;"><span></span></a>
</div>
</div>
<div class="box2">
<p class="animate2">
环元星球开放了!
</p>
</div>
<!--动态时间 -->
<script type="text/javascript">
function timeprint()
{
var week; var date;
var today=new Date()
var year=today.getFullYear()
var month=today.getMonth()+1
var day=today.getDate()
var ss=today.getDay()
var hours=today.getHours()
var minutes=today.getMinutes()
var seconds=today.getSeconds()
date=year+"年"+month+"月"+day+"日 "
if(ss==0) week="星期日"
if(ss==1) week="星期一"
if(ss==2) week="星期二"
if(ss==3) week="星期三"
if(ss==4) week="星期四"
if(ss==5) week="星期五"
if(ss==6) week="星期六"
if(minutes<=9)
minutes="0"+minutes
if(seconds<=9)
seconds="0"+seconds
myclock="游客, 您好!现在是"+date+week+" "+hours+":"+minutes+":"+seconds+" \n "
if(document.layers){document.layers.time.document.write(myclock)
document.layers.time.document.close()
}else
document.getElementById('time').innerHTML=myclock
setTimeout("timeprint()",1000)
}
timeprint();
</script>
</body>
</html>