-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (43 loc) · 817 Bytes
/
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
<html>
<head>
<style>
@-webkit-keyframes glower {
0% {
text-shadow: 0 0 0px #3cf;
}
50% {
text-shadow: 0 0 10px #3cf;
}
100% {
text-shadow: 0 0 30px #3cf;
}
50% {
text-shadow: 0 0 10px #3cf;
}
}
canvas {
width: 800px;
height: 600px;
}
div {
text-align: center;
}
h1{
font-size: 5em;
text-shadow: 0 0 30px #3cf;
-webkit-animation: glower 2s infinite;
text-align: center;
margin-top: 0;
}
</style>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="bundle.js"></script>
</head>
<body>
<div>
<canvas id="myCanvas"></canvas>
</div>
<h1>RAYYYYYYYY</h1>
</body>
</html>