-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (39 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Colorain</title>
<link rel="shortcut icon" href="images/icon.png">
<link rel="stylesheet" type="text/css" href="./css/jquery.qtip.css"/>
<link rel="stylesheet" type="text/css" href="./css/colorain.css"/>
<script src="./js/jquery-3.1.1.min.js"></script>
<script src="./js/underscore.js"></script>
<script src="./js/clipboard.js"></script>
<script src="./js/jquery.qtip.js"></script>
<script src="./js/colors.js"></script>
<script src="./js/colorain.js"></script>
</head>
<body>
<div>
<a href="http://sorumi.me" id="author">
<span>Sorumi's work</span>
</a>
</div>
<div id="title">
<!--<h1>colorain</h1>-->
<img id="title-img" src="images/title.png" width="230" class="animated fadeIn">
<img id="title-drop" src="images/title-drop.png" width="10" class="animated fadeInDown">
<h6>(click and copy to clipboard!)</h6>
</div>
<div id="rain-div">
</div>
<a id="umbrella">
<img src="images/umbrella.png" width="240">
</a>
</body>
</html>
<script>
$('#umbrella').click(function () {
addColors();
});
</script>