-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathbasic.html
More file actions
38 lines (31 loc) · 1.22 KB
/
Copy pathbasic.html
File metadata and controls
38 lines (31 loc) · 1.22 KB
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>
<head>
<meta charset="utf-8">
<title>Animated_GIF - basic test</title>
<script defer src="../dist/Animated_GIF.js"></script>
<script defer src="basic.js"></script>
</head>
<body>
<h1>Animated_GIF</h1>
<p>A library that makes creating animated GIFs easy. Everything is client-side, using JavaScript.</p>
<p><a href="https://github.com/sole/Animated_GIF/">Get the source</a> and start animating today!</p>
<p id="status"></p>
<div id="sample_image"></div>
<h2>Sample images</h2>
<img src="../images/2687824939_6e3690d51d_z.jpg" alt="parakeets" />
<p>Picture by <a href="http://www.flickr.com/photos/petehogan/2687824939/">petehogan</a></p>
<img src="../images/4878878197_31de9837ba_z.jpg" alt="sad kitten" />
<p>Picture by <a href="http://www.flickr.com/photos/bjornlifoto/4878878197/">bjornlifoto</a></p>
<img src="../images/5663357414_001d1ce705_z.jpg" alt="terrapin" />
<p>Picture by <a href="http://www.flickr.com/photos/tomsoperphotography/5663357414/">tom soper</a></p>
<style>
#status {
font-family: Courier, mono;
font-size: 1.2rem;
background: #ccc;
padding: 1rem;
}
</style>
</body>
</html>