-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdemo.html
More file actions
38 lines (29 loc) · 836 Bytes
/
demo.html
File metadata and controls
38 lines (29 loc) · 836 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Hyped</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:800,400,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/demo.css">
</head>
<body>
<div class="wrapper">
<h1><span>Hyped</span></h1>
<div class="hyped">
<div id="loading"></div>
</div>
</div>
<script src="app/components/jquery/jquery.min.js"></script>
<script src="js/jquery.hyped.min.js"></script>
<script>
$(".hyped").hyped({
username : "stursby",
linked : true,
count : 5,
loveCount : true
});
</script>
</body>
</html>