-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
26 lines (23 loc) · 839 Bytes
/
demo.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
<!DOCTYPE html>
<html>
<head>
<title>Cat Vote Example</title>
<link href="cat_vote.css" media="all" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Concert+One" rel="stylesheet">
</head>
<body>
<div class="vote_cat">
<a href="javascript://">
<div class="bg layer1" style="display: block;"></div>
<div class="bg layer2" style="display: none;"></div>
<span class="message" style="display: none;">MEOW :)</span>
</a>
<audio id="vote_cat_sound" controls="controls" preload="auto">
<source src="cat_sound.mp3" type="audio/mpeg">
<source src="cat_sound.ogg" type="audio/ogg">
</audio>
</div>
<script crossorigin="anonymous" src="bower_components/jquery/dist/jquery.min.js"></script>
<script crossorigin="anonymous" src="cat_vote.js"></script>
</body>
</html>