-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
69 lines (67 loc) · 2.37 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
<!DOCTYPE html>
<html>
<head>
<link href="switchy.css" rel="stylesheet" />
<link href="demos/bootstrap.min.css" rel="stylesheet" />
<link href="demos/application.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<div class="row">
<div class="span1 offset4 female">
<img src='demos/female.png' class='gender' gender='female' />
</div>
<div class="span2">
<select id='switch-me'>
<option value='female'>female</option>
<option value='' selected="selected"></option>
<option value='male'>male</option>
</select>
</div>
<div class="span1">
<img src='demos/male.png' class='gender' gender='male' />
</div>
</div>
<div class='row'>
<div class='span12' id="console">
</div>
</div>
</div>
<!-- <table>
<tr>
<td width='10%'>
<img src='demos/female.png' class='gender' gender='female' />
</td>
<td width='80%'>
<select id='switch-me'>
<option value='female'>female</option>
<option value='' selected="selected"></option>
<option value='male'>male</option>
</select>
</td>
<td width='10%'>
<img src='demos/male.png' class='gender' gender='male' />
</td>
</tr>
<tr>
<td colspan="3" id="console">
<td>
</tr>
</table> -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="demos/jquery.animate-color.js"></script>
<script type="text/javascript" src="demos/jquery.event.drag.js"></script>
<script type="text/javascript" src="switchy.js"></script>
<script type="text/javascript" src="demos/application.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38222318-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>
</body>
</html>