-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (85 loc) · 2.59 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
<!DOCTYPE html>
<html>
<head>
<title>KLIK Radio</title>
<style type="text/css">
html, body {
height:100%;
width:100%;
margin:0;
padding:0;
position:absolute;
top:0;
right:0;
bottom:0;
left:0;
}
body {
background-image:url('clouds.jpg');
background-size: cover;
}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3581053-3']);
_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>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#tunein').click(function() {
$('#buttons').fadeOut(500, function() {
window.location='http://loudcity.com/stations/klik-radio';
});
});
$('#dj').click(function() {
$('#buttons').fadeOut(500, function() {
window.location='dj.html';
});
});
$('#donate').click(function() {
$('#buttons').fadeOut(500, function() {
window.location='https://www.wepay.com/donations/klikradio';
});
});
});
</script>
<style type="text/css">
#buttons div {
margin-top: 6px;
margin-bottom: 6px;
padding: 0px;
}
#buttons div.ui-effects-wrapper {
height: 47px !important;
}
</style>
</head>
<body>
<div style="width: 50%; float: left; height: 100%; background-color: rgba(255,255,255,0.5);" align="right">
<div style="width: 500px; height: 100%; margin-right: 30px;">
<img src="ilyaklik.png" />
</div>
</div>
<div style="width: 50%; float: right; margin-top: 315px;" align="left">
<div style="margin-left: 40px;" id="buttons">
<div>
<img src="tunein.png" title="Tune in to KLIK" alt="Tune in to KLIK" border="0" id="tunein" />
</div>
<div>
<img src="dj.png" title="Become a KLIK DJ" alt="Become a KLIK DJ" border="0" id="dj" />
</div>
<div>
<img src="donate.png" title="Donate to KLIK" alt="Donate to KLIK" border="0" id="donate" />
</div>
</div>
</div>
<div style="clear: both; z-index: 5; position: absolute; bottom: 0px; font-size: 8px; color: #ccc; font-family: Arial; width: 50%; left:50%;" align="left"><div style="margin-left: 2px;">KLIK Radio is high school Internet radio from Northern Colorado.<br />Copyright © 2012 KLIK Radio. Music licensing managed by LoudCity, LLC.</div></div>
</body>
</html>