-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (45 loc) · 2.57 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>
<meta charset="UTF-8">
<title>HTML5 Fireflies</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<audio autoplay="" loop="" preload="">
<source src="audio/ngbg.ogg" type="audio/ogg"></source>
<source src="audio/ngbg.mp3" type="audio/mpeg"></source>
</audio>
<!-- ==========================================================================
Div to show before PreLoader
=============================================================================== -->
<header class="entry-header">
<h1 class="entry-title"><b>Collective Memories</b></h1> <h3><br>Drop a memory in this collective pool of memories. <br>The memories take the shape of a glowing firefly <br>You can hover over a firefly and click on it to reveal the specific memory.</h3>
</header>
<!-- <div id ="info"><b>Collective Memories</b> <br>Drop a memory in this collective pool of memories. The memories take the shape of a glowing firely , you can hover over a firefly and click on it to reveal the specific memory.</div>
<div id ="upload"> <b>Click to Uplaod a Memory</b> <br> <br> <i class="fa fa-plus-circle" aria-hidden="true"></i></div> -->
<!-- ==========================================================================
Div for PreLoader
=============================================================================== -->
<div id="loader-wrapper">
<div id="loader" class="spinner">
<div class="dot1"></div>
<div class="dot2"></div>
</div>
<!--<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div> -->
</div>
<!-- ==========================================================================
Div for Canvas
=============================================================================== -->
<canvas id="canvas"></canvas>
<!-- ==========================================================================
Scripts to be loaded
=============================================================================== -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>