-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (25 loc) · 823 Bytes
/
index.html
File metadata and controls
30 lines (25 loc) · 823 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Javascript Rain Effect</title>
</head>
<body>
<div class="btn-section">
<span>
<b>Drops :
<span id="selectDropsCount"></span>
</b>
</span>
<a class="drop-btn" onclick="changeDropCount(100)">100</a>
<a class="drop-btn" onclick="changeDropCount(200)">200</a>
<a class="drop-btn" onclick="changeDropCount(500)">500</a>
<a class="drop-btn" onclick="changeDropCount(800)">800</a>
</div>
<div id="drops-section"></div>
<script src="js/waterDrop.js"></script>
<script src="js/rain.js"></script>
</body>
</html>