forked from sergicollado/draganddropgame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·102 lines (90 loc) · 1.72 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE HTML>
<html>
<head>
<style>
#window{
margin:auto;
width:600px;
height:600px;
border:1px solid red;
overflow:hidden;
position:relative;
}
ul{ list-style: none outside none;}
ul img{ width:100px; height: 100px;}
#dock_tile{
position: fixed;
}
#board{
position:absolute;
-webkit-transition: all 1s linear;
-moz-transition: all 1s linear;
-o-transition: all 1s linear;
-ms-transition: all 1s linear;
transition: all 1s linear;
}
#board td .tile{
width:100px;
height:100px;
border:1px solid black;
}
#board td .tile img{
width:100px;
height:100px;
}
#scroll-left {
position:absolute;
left:0px;
top:0px;
border:1px solid blue;
width : 100px;
height : 600px;
}
#scroll-right {
position:absolute;
left:500px;
top:0px;
border:1px solid blue;
width : 100px;
height : 600px;
}
#scroll-top {
position:absolute;
left:0px;
top:0px;
border:1px solid blue;
width : 600px;
height : 100px;
}
#scroll-bottom {
position:absolute;
left:0px;
top:500px;
border:1px solid blue;
width : 600px;
height : 100px;
}
#scroll-left:hover, #scroll-right:hover, #scroll-bottom:hover, #scroll-top:hover{
border:2px solid blue;
}
</style>
</head>
<body>
<div id="dock_tile">
<ul>
<li draggable="true"><img src="images/tile1.jpg"></li>
<li draggable="true"><img src="images/tile2.jpg"></li>
<li draggable="true"><img src="images/tile3.jpg"></li>
</ul>
</div>
<div id="window">
<table id="board">
</table>
<div id="scroll-left"></div>
<div id="scroll-right"></div>
<div id="scroll-top"></div>
<div id="scroll-bottom"></div>
</div>
<script src="js/functions.js" type="text/javascript"></script>
</body>
</html>