-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
75 lines (69 loc) · 2.17 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
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<script src="/diffy.js"></script>
<title>Diffy.js</title>
<style type="text/css">
body {
margin: 0;
padding: 0;
font-size: 16px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: black;
color: white;
}
.wrapper {
width: 60%;
margin: 0 auto;
padding-top: 5%;
}
pre {
font-weight: 900;
color: white;
margin-bottom: 50px;
}
h2 {
font-weight: 300;
}
h1, h2 {
margin: 0;
}
a, a:hover, a:visited, a:active {
text-decoration: underline;
color: white;
}
ul {
padding: 0;
list-style-type: none;
}
</style>
</head>
<body>
<div class="wrapper">
<pre>
,---,
.' .' `\ ,--, .--., .--.,
,---.' \ ,--.'| ,--.' \ ,--.' \ .--.
| | .`\ | | |, | | /\/ | | /\/ .--,`| .--.--.
: : | ' | `--'_ : : : : : : .--, | |. / / '
| ' ' ; : ,' ,'| : | |-, : | |-, /_ ./| '--`_ | : /`./
' | ; . | ' | | | : :/| | : :/| , ' , ' : ,--,'| | : ;_
| | : | ' | | : | | .' | | .' /___/ \: | | | ' \ \ `.
' : | / ; ' : |__ ' : ' ' : ' . \ ' | : | | `----. \
| | '` ,/ | | '.'| | | | | | | \ ; : ___ __| : ' / /`--' /
; : .' ; : ; | : \ | : \ \ \ ; / .\ .'__/\_: | '--'. /
| ,.' | , / | |,' | |,' : \ \ \ ; | | : : `--'---'
'---' ---`-' `--' `--' \ ' ; `--" \ \ /
`--` `--`-'
</pre>
<h1>Diffy.js </h1>
<h2>A dependency-free motion detection library <br> for the browser</h2>
<ul>
<li><a href="https://github.com/maniart/diffyjs/blob/master/README.md">Documentation</a></li>
<li><a href="https://github.com/maniart/diffyjs">Github</a></li>
<li><a href="https://www.npmjs.com/package/diffyjs">npm</a></li>
<li><a href="https://github.com/maniart/diffyjs">bower</a></li>
</ul>
</div>
</body>
</html>