-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathinvite.html
53 lines (50 loc) · 1.97 KB
/
invite.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
<!doctype html>
<html lang="en">
<head>
<title>Allen & Leona's Wedding invitation</title>
<link href="css/invite.css?t=20120312" 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 class="invite">
<div class="first"><img id="customer" src="images/custom/nin.png"/></div>
<div class="second"><img src="images/time.png"></div>
<div class="third"><img src="images/location.png"></div>
<div class="fourth"><img src="images/thankyou.png"></div>
</div>
<div id="background_player" ></div>
<script>
$(document).ready(function(){
$("#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
});
});
</script>
</body>
</html>