-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (72 loc) · 2.25 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
<!DOCTYPE html>
<html>
<head>
<title>dobwow</title>
<link href='//fonts.googleapis.com/css?family=Nunito:700' rel='stylesheet' type='text/css'>
<script src="//code.jquery.com/jquery-1.10.1.min.js"></script>
<style>
body {
font-family: 'Nunito', sans-serif;
background: url(img/bean.gif) #201d38;
background-position:center top;
/*background-size:108px 113px;*/
color: #B6B6B6;
text-align:center;
}
#equal {
height:124px;
width:100%;
position: fixed;
bottom:0;
left:0;
background: url(img/equal.gif) bottom left rgba(32,29,56,.75) repeat-x;
background-attachment: fixed;
background-size:350px 124px;
color: #B6B6B6;
}
#dobwow {
height:150px;
width:1000px;
text-align:center;
font-size:150px;
line-height:150px;
position:absolute;
top:50%;
left:50%;
margin-top:-75px;
margin-left:-500px;
}
#player {
width: 1000px;
font-size: 150px;
line-height: 150px;
position: absolute;
top: 56%;
left: 50%;
margin-top: -75px;
margin-left: -350px;
}
</style>
<script type="text/javascript" src="js/rainbow.js"></script>
<script type="text/javascript">
$(function() {
$('#dobwow').rainbow({animate:true,animateInterval:100,colors:['#FF0000','#f26522','#fff200','#00a651','#28abe2','#9182ff']});
})
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54660707-4', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="dobwow">dobwow</div>
<div id="player">
<iframe style="border: 0; width: 100%; height: 42px;" src="http://bandcamp.com/EmbeddedPlayer/album=2868217946/size=small/bgcol=ffffff/linkcol=0687f5/track=964435503/transparent=true/" seamless><a href="http://tdrrecords.bandcamp.com/album/politefully-dead">Politefully Dead by Punchline</a></iframe>
</div>
<div id="equal"> </div>
</body>
</html>