-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.89 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
<!doctype html>
<html lang="ja">
<link rel="stylesheet" href="style.css">
<link href='http://fonts.googleapis.com/css?family=Josefin+Sans&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"">
<title>Countdown</title>
</head>
<body>
<div id="container">
<canvas id="pixie"></canvas>
<div class="container">
<h1>GRAND FRONTEND OSAKA 2016</h1>
<p>開催まで</p>
<div class="countdown">
<div class="dateBlock">
<span class="date">23</span>
<span class="days">Days</span>
</div>
<div data-loaded="80" class="gauge">
<svg viewBox="0 0 100 100" preserveAspectRatio="xMinYMin">
<filter id="drop-shadow" width="150%" height="150%">
<feGaussianBlur in="SourceAlpha" stdDeviation="1.7"/>
<feOffset dx="0" dy="0" result="offsetblur"/>
<feFlood flood-color="white"/>
<feComposite in2="offsetblur" operator="in"/>
<feMerge>
<feMergeNode/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<circle r="45" cy="50" cx="50" filter="url(#drop-shadow)" class="gauge__ring"></circle>
<circle r="45" cy="50" cx="50" filter="url(#drop-shadow)" class="gauge__measure"></circle>
</svg>
</div>
</div>
</div><!--continer-->
<script src="https://code.jquery.com/jquery-2.2.3.min.js"></script>
<script src="fireflies.js"></script>
</div>
</body>
</html>