-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (38 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - love Puzzle</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div id='puz_box'>
<div id='puz'>
<i class='first' ondrop='drop(event)' ondragover='allowDrop(event)' ></i>
<i class='secon' ondrop='drop(event)' ondragover='allowDrop(event)'></i>
<i class='third' ondrop='drop(event)' ondragover='allowDrop(event)'></i>
<i class='fourt' ondrop='drop(event)' ondragover='allowDrop(event)'></i>
<i class='fifth' ondrop='drop(event)' ondragover='allowDrop(event)'></i>
<i class='sixth' ondrop='drop(event)' ondragover='allowDrop(event)'></i>
<i class='seven' ondrop='drop(event)' ondragover='allowDrop(event)'></i>
<i class='eight' ondrop='drop(event)' ondragover='allowDrop(event)'></i>
<i class='ninth' ondrop='drop(event)' ondragover='allowDrop(event)'></i>
</div>
<div id='puzz'>
<i class='third' draggable='true' ondragstart='drag(event)'></i>
<i class='first' draggable='true' ondragstart='drag(event)'></i>
<i class='secon' draggable='true' ondragstart='drag(event)'></i>
<i class='fourt' draggable='true' ondragstart='drag(event)'></i>
<i class='fifth' draggable='true' ondragstart='drag(event)'></i>
<i class='sixth' draggable='true' ondragstart='drag(event)'></i>
<i class='seven' draggable='true' ondragstart='drag(event)'></i>
<i class='eight' draggable='true' ondragstart='drag(event)'></i>
<i class='ninth' draggable='true' ondragstart='drag(event)'></i>
</div>
</div>
<div id='clicks'>0</div>
<!-- partial -->
<script src="script.js"></script>
</body>
</html>