-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (107 loc) · 4.6 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
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Drag and Drop Example - Time to Hack</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="//time2hack.com/favicon.png" type="image/png">
<link rel="icon" href="//time2hack.com/favicon.png" type="image/png">
<link rel="stylesheet" href="//stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="app" class="container">
<div class="draggable-items">
<div class="row">
<div class="col">
<div class="card bg-light my-3" draggable="true">
<div class="card-header">Light card title</div>
<div class="card-body">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
<div class="col">
<div class="card text-white bg-dark my-3" draggable="true">
<div class="card-header">Dark card title</div>
<div class="card-body">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
<div class="col">
<div class="card text-white bg-warning my-3" draggable="true">
<div class="card-header">Warning card title</div>
<div class="card-body">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
<div class="col">
<div class="card text-white bg-info my-3" draggable="true">
<div class="card-header">Info card title</div>
<div class="card-body">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="card text-white bg-primary my-3" draggable="true">
<div class="card-header">Primary card title</div>
<div class="card-body">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
<div class="col">
<div class="card text-white bg-secondary my-3" draggable="true">
<div class="card-header">Secondary card title</div>
<div class="card-body">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
<div class="col">
<div class="card text-white bg-success my-3" draggable="true">
<div class="card-header">Success card title</div>
<div class="card-body">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
<div class="col">
<div class="card text-white bg-danger my-3" draggable="true">
<div class="card-header">Danger card title</div>
<div class="card-body">
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
</div>
</div>
</div>
</div>
<div class="row dropzones">
<div class="col">
<div class="my-3 p-3 border rounded dropzone">
<span class="text-muted">Drop the cards here</span>
</div>
</div>
<div class="col">
<div class="my-3 p-3 border rounded dropzone">
<span class="text-muted">Drop the cards here</span>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="my-3 p-3 border rounded file-dropzone">
<div class="mb-3 text-muted">Drop images here</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>