-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
81 lines (75 loc) · 2.91 KB
/
index.html
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
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>星月的小世界</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style type="text/css">
@font-face {
font-family: digit;
src: url('digital-7_mono.ttf') format("truetype");
}
</style>
<link href="css/default.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/garden.js"></script>
<script type="text/javascript" src="js/functions.js"></script>
</head>
<body>
<div id="mainDiv">
<div id="content">
<div id="code">
<br />
<br />
<div class="keyword"> 2016年元旦,第一次和你一起爬爬花山,第一次坐在你的身旁,第一次牵到你的手,第一次一起看电影,第一次一起吃华莱士。。。很幸运!这么多第一次在新年的一天发生了,更幸运的是得到你的芳心。</div><br /><br /><br /><br /><br />
<div class="keyword"> 一年过去了,和你经历了很多,越来越离不开你。憧憬着有你的未来是多么美好,一起旅游,一起健身,一起做做饼干,一起品尝每种美食,一起装饰我们的家,一起经历未来生活中的点点滴滴。。。</div>
</div>
<div id="loveHeart">
<canvas id="garden"></canvas>
<div id="words">
<div id="messages">
二傻子,我们已经相恋了
<div id="elapseClock"></div>
</div>
<div id="loveu">
山无棱,天地合,才敢与君绝<br/>
<div class="signature">熊炼</div>
</div>
</div>
</div>
</div>
<div id="copyright">
<a href='https://beian.miit.gov.cn/' target='_blank'>粤ICP备16108165号</a> Copyright © 2016 熊炼 2016-2019
</div>
</div>
<script type="text/javascript">
var offsetX = $("#loveHeart").width() / 2;
var offsetY = $("#loveHeart").height() / 2 - 55;
var together = new Date();
together.setFullYear(2016, 0, 1);
together.setHours(10);
together.setMinutes(0);
together.setSeconds(0);
together.setMilliseconds(0);
if (!document.createElement('canvas').getContext) {
var msg = document.createElement("div");
msg.id = "errorMsg";
msg.innerHTML = "Your browser doesn't support HTML5!<br/>Recommend use Chrome 14+/IE 9+/Firefox 7+/Safari 4+";
document.body.appendChild(msg);
$("#code").css("display", "none")
$("#copyright").css("position", "absolute");
$("#copyright").css("bottom", "10px");
document.execCommand("stop");
} else {
setTimeout(function () {
startHeartAnimation();
}, 5000);
timeElapse(together);
setInterval(function () {
timeElapse(together);
}, 500);
adjustCodePosition();
$("#code").typewriter();
}
</script>
</body>
</html>