-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (87 loc) · 3.1 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>520Colouful</title>
<style style="text/css">
*{margin:0;padding:0;}
body{background:url("images/1.jpg");background-size:cover;}
/*start top*/
.top{width:400px;height:100px;margin:60px auto;font-size:30px;font-family:"华文行楷";color:#fff;
<!--background:-webkit-linear-gradient(45deg,#ff0000,#ffcc00,#ffff99,#33ccff,#00ff33,#6600ff,#333399);
-webkit-background-clip:text;-->}
/*end top*/
/*start box*/
.box{width:310px;height:310px;margin:auto;perspective:800px;/*景深*/}
.box .pic{position:relative;transform-style:preserve-3d;/*3d环境*/ animation:play 10s linear infinite;/*动画名称 执行时间 匀速 无限执行*/}
.box ul li{list-style:none;position:absolute;top:0;left:0;}
/*start box*/
/*定义一个关键帧*/
@keyframes play{
from{transform:rotateY(0deg);}
to{transform:rotateY(360deg);}
}
/*start text*/
#text{width:500px;height:200px;color:#6fade1;margin:auto;font-size:24px;font-family:"方正喵呜体";}
/*end text*/
</style>
</head>
<body>
<embed src="1.mp3" loop="100" autostar="true" hidden="true" controls="controls"></embed>
<!--start top-->
<div class="top">
<font color="pink"><marquee behavior="alternate">夏日炎炎,有你真甜 = ̄ω ̄=</marquee></font>
</div>
<!--end top-->
<!--start box-->
<div class="box">
<div class="pic">
<ul>
<li><img src="images/1.png" width="" height="" alt=""></li>
<li><img src="images/2.png" width="" height="" alt=""></li>
<li><img src="images/3.png" width="" height="" alt=""></li>
<li><img src="images/4.png" width="" height="" alt=""></li>
<li><img src="images/5.png" width="" height="" alt=""></li>
<li><img src="images/6.png" width="" height="" alt=""></li>
</ul>
</div>
</div>
<!--end box-->
<!--start text-->
<div id="text"></div>
<!--end text-->
<embed src="music.mp3" hidden="true">
<script src="js/jquery.min.js"></script>
<!--雪花-->
<script src="js/snow.js"></script>
<script>
$(".pic ul li").each(function(i){//遍历
var deg=360/$(".pic ul li").size();//size个数
//当前的li对象 添加css样式
$(this).css({"transform":"rotateY("+deg*i+"deg) translateZ(216px)"});
$.fn.snow({
minSize:10,
maxSize:15,
newOn:500,
flakeColor:"#ffffff"
});
});
var i=0;
var str="好的感情不是被碰巧撞到的,它需要时间经营,耐心包容,还有两个人真心想要在一起的人,如果你是花朵,我愿做一只蝴蝶,愿真爱永远环绕着你;如果你是白云,我愿做一缕清风,愿真情永远跟随着你,520我爱你,我要告诉你,死生契阔,与子成说;执子之手,与子偕老!";
window.onload=function typing(){
//获取div
var mydiv=document.getElementById("text");
mydiv.innerHTML+=str.charAt(i);
i++;
var id=setTimeout(typing,100);
if(i==str.length){
clearTimeout(id);
}
}
</script>
<div style="text-align:center;margin:-50px 0; font:normal 14px/24px 'MicroSoft YaHei';color:#ffffff">
<br /><br />
<p>来源:<h3>爱你的---孟先生</h3></p>
</div>
</body>
</html>