-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>floppy line animation!</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="./style.css" />
<!-- import the webpage's javascript file -->
<script type="text/javascript" src="./script.js" defer></script>
</head>
<body>
<div class="content">
<h1 id="title">floppy line animation!</h1>
<div class="button-container">
<button class="button hidden" id="start">start</button>
<button class="button" id="stop">stop</button>
</div>
</div>
<!-- This is our svg model! -->
<svg
id="buddy"
viewbox="0 20 200 200"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>a flowing water model</title>
<desc>a bunch of lines</desc>
</svg>
<!-- include the Glitch button to show what the webpage is about and
to make it easier for folks to view source and remix -->
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
<script type="text/javascript" src="https://button.glitch.me/button.js"></script>
</body>
</html>