-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
40 lines (39 loc) · 2.12 KB
/
example.html
File metadata and controls
40 lines (39 loc) · 2.12 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
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Canvas Game</title>
<link rel="stylesheet" type="text/css" href="style/main.css">
</head>
<body class="bg-grey-0 col-lg-12">
<div class="col-lg-6 gutter">
<div class="col-lg-12 test-height bg-blue-0 gutter"></div>
<div class="col-lg-12 test-height bg-blue-1"></div>
<div class="col-lg-12 test-height bg-blue-2"></div>
<div class="col-lg-12 test-height bg-blue-3"></div>
<div class="col-lg-12 test-height bg-blue-4"></div>
<div class="col-lg-12 test-height bg-grey-0"></div>
<div class="col-lg-12 test-height bg-grey-1"></div>
<div class="col-lg-12 test-height bg-grey-2"></div>
<div class="col-lg-12 test-height bg-purple-0"></div>
<div class="col-lg-12 test-height bg-purple-1"></div>
<div class="col-lg-12 test-height bg-purple-2"></div>
<div class="col-lg-12 test-height bg-purple-3"></div>
</div>
<div class="col-lg-6 gutter">
<div draggable="true" class="col-lg-10 test-height bg-blue-0 bg-shadow-0 col-lg-offset-1 ripple"></div>
<div class="col-lg-10 test-height bg-blue-1 bg-shadow-1 col-lg-offset-1 ripple"></div>
<div class="col-lg-10 test-height bg-blue-2 bg-shadow-2 col-lg-offset-1 ripple"></div>
<div class="col-lg-10 test-height bg-blue-3 bg-shadow-3 col-lg-offset-1 ripple"></div>
<div class="col-lg-10 test-height bg-blue-4 bg-shadow-4 col-lg-offset-1 ripple"></div>
<div class="col-lg-10 test-height bg-grey-0 bg-shadow-5 col-lg-offset-1 ripple"></div>
<div class="col-lg-10 test-height bg-grey-1 bg-shadow-6 col-lg-offset-1 ripple"></div>
<div class="col-lg-10 test-height bg-grey-2 bg-shadow-3 col-lg-offset-1 ripple"></div>
<div class="col-lg-10 test-height bg-purple-0 bg-shadow-3 col-lg-offset-1 ripple"></div>
<div class="col-lg-10 test-height bg-purple-1 bg-shadow-3 col-lg-offset-1 ripple "></div>
<div class="col-lg-10 test-height bg-purple-2 bg-shadow-3 col-lg-offset-1 ripple "></div>
<div class="col-lg-10 test-height bg-purple-3 bg-shadow-3 col-lg-offset-1 ripple"></div>
</div>
<script src="js/ripple.js" type="text/javascript"></script>
</body>
</html>