forked from xavieryao/Happy-Birthday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
108 lines (103 loc) · 4.12 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
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
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Happy Birthday</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_dev.js"></script>
<script type="text/javascript" src="js/functions_dev.js"></script>
</head>
<body>
<div id="mainDiv">
<div id="content">
<div id="code">
<span class="comments">/**</span><br />
<span class="space"/><span class="comments">* Today, the 10th day after new year ...</span><br />
<span class="space"/><span class="comments">* Is the biggest day for you, and also for me ...</span><br />
<span class="space"/><span class="comments">* Because 22 year ago, the girl I love was born</span><br />
<span class="space"/><span class="comments">*/</span><br />
u = Girl.<span class="keyword">new</span>(<span class="string">"Vivian Zhang"</span>)<br />
<span class="comments">// When you see this page, your age increased </span><br />
currentTime = DateTime.<span class="keyword">now</span> <br />
formatter = <span class="keyword">lambda</span>{ |t| DateTime.strptime(<span class="string">t, '%Y %U %w %H %M %S %z'</span>)}<br />
dateString = formatter.(currentTime)<br />
if dateString.equal? <span class="string">"2017-02-06 00:00:00"</span></br>
    u.age ++</br>
end</br>
<span class="comments">// My blessing will be with you simultaneously.</span><br />
<span class="comments">// Forever and ever. I wish</span><br />
while true do</br>
<span class="comments">// luckiness,</span><br />
    u.fortune ++</br>
<span class="comments">// happiness,</span><br />
    u.happiness ++</br>
<span class="comments">// paper amount,</span><br />
    u.paper_amount ++</br>
<span class="comments">// and everything you wish can be achieved.</span><br />
end</br>
<span class="comments">// The last thing I wanna say, boring and ordinary, is:</span><br />
puts <span class="string">"Happy Birthday !"</span>
</div>
<div id="loveHeart">
<canvas id="garden"></canvas>
<div id="words">
<div id="messages">
</br>
</br>
</br>
</br>
You've been in the world for
<div id="elapseClock"></div>
</div>
<div id="loveu">
May you have a year full of happiness.<br/>
<div class="signature">- Simon</div>
</div>
</div>
</div>
</div>
<div id="copyright">
Inspired by <a href="http://www.openrise.com/lab/FlowerPower/">FlowerPower</a> project.<br />
The origin version is from <a href='http://hackerzhou.me'>hackerzhou.me</a> </br>
Forked from <a href="http://weibo.com/xavieryao">Xavier Yao</a> and redesigned by <a href="http://yumengxu.com">Simon</a>.
</div>
</div>
<script type="text/javascript">
var offsetX = $("#loveHeart").width() / 2;
var offsetY = $("#loveHeart").height() / 2 - 55;
var together = new Date();
together.setFullYear(1995,2, 9);
together.setHours(8);
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>