-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
149 lines (124 loc) · 4.93 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html lang="en">
<head>
<title>Allen & Leona's Wedding invitation</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=1024" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" lang="en" content="" />
<meta name="robots" content="index, follow" />
<!--link rel="shortcut icon" href="favicon.ico" /-->
<link href="css/style.css?t=20120311" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="javascript/jquery-1.6.2.js"></script>
<script type="text/javascript" src="javascript/jquery.jplayer.min.js"></script>
<script type="text/javascript" src="javascript/customer.js?t=20120312"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-29911815-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="impress" class="impress-not-supported">
<div class="fallback-message">
<p>建议您使用firefox、chrome或者safari访问本网站以获得最好的效果</p>
<p>本网页将在<b>5</b>秒钟以后跳转到适合ie浏览器访问的页面,<a href="invite.html">点此直接跳转</a></p>
</div>
<div id="bored" class="step" data-x="-200" data-y="-4800">
<img src="images/wedding_2.png" />
</div>
<div class="step" data-x="500" data-y="-4800">
<img src="images/wedding_13.png"/>
<img class="bottom" src="images/wedding_15.png"/>
</div>
<div class="step" data-x="1000" data-y="-4800">
<div class="largepic"><img src="images/wedding_03.png"/></div>
<div class="largepic middle"><img src="images/wedding_07.png"/></div>
<div class="largepic"><img src="images/wedding_10.png"/></div>
</div>
<div class="step" data-x="1000" data-y="-4300" data-rotate="90">
<img src="images/allensay.png"/>
</div>
<div class="step" data-x="500" data-y="-4300" data-rotate="180">
<img src="images/leonasay.png"/>
</div>
<div class="step" data-x="200" data-y="-3500" data-scale="2">
<img src="images/wedding_3.png"/>
</div>
<div class="step yes" data-x="-500" data-y="-4650" data-z="-3000" data-scale="2" data-rotate="45" >
<div><img src="images/wedding_18.png"/></div>
<div><img src="images/wedding_21.png"/></div>
<div class="lineLeft"><img src="images/wedding_23.png"/></div>
<div class="lineRight"><img src="images/wedding_27.png"/></div>
</div>
<div class="step" data-x="-1000" data-y="-4800" >
<img id="customer" src="images/custom/nin.png"/>
</div>
<div class="step" data-x="-1000" data-y="-4300" >
<img src="images/time.png"/>
</div>
<div class="step" data-x="-1000" data-y="-3800" >
<img src="images/location.png"/>
</div>
<div class="step" data-x="-1000" data-y="-3300" >
<img src="images/thankyou.png"/>
</div>
<div id="overview" class="step" data-x="10" data-y="-4000" data-scale="3">
</div>
</div>
<div id="background_player" >
</div>
<script src="javascript/impress.js"></script>
<script>impress();</script>
<script>
$(document).ready(function(){
if($.browser.msie){
window.setTimeout(function(){
var name = getQueryParameter("u");
var url = "invite.html";
if(name){
url += "?u="+name;
}
window.location.href=url;
},5000);
return;
}
var timeInterval = 6000;
var timeId = window.setInterval(function(){
impress().next();
},timeInterval);
$("#customer").attr("src",getCustomer());
$("#customer").error(function(){
this.src="images/custom/nin.png";
});
$("#background_player").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
mp3: "http://view.online.zcom.com/full/20669/%D2%B9%B5%C4%B8%D6%C7%D9%C7%FA.mp3"
}).jPlayer("play");
},
ended: function (event) {
$(this).jPlayer("play");
},
swfPath: "javascript",
supplied: "mp3",
loop:true
});
$(document).bind("keydown.backspace",function(){
if(timeId){
timeId =window.clearInterval(timeId);
}else{
timeId = window.setInterval(function(){
impress().next();
},timeInterval);
}
});
});
</script>
</body>
</html>