-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathindex.html
53 lines (46 loc) · 982 Bytes
/
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
<head>
<title>interact.js transforms modifier demo</title>
<script type="module" src="./index.js"></script>
<link rel="stylesheet" href="../../node_modules/bulma/css/bulma.css">
</head>
<body>
<div id="container" _class="container box">
<div id="item1" class="item card">
<div class="card-content">item 1</div>
</div>
<div id="item2" class="item card">
<div class="card-content">item 2</div>
</div>
<div id="item3" class="item card">
<div class="card-content">item 3</div>
</div>
<div id="item4" class="item card">
<div class="card-content">item 4</div>
</div>
</div>
<style>
*, *::before, *::after {
box-sizing: border-box;
}
body {
margin: 0;
}
#container {
margin: 0;
transform-origin: 0 0;
transform: rotate(0deg) scale(2);
_transform: rotate(10deg);
width: 25vw;
}
.item {
background-color: #29e;
max-width: none;
touch-action: none;
user-select: none;
}
#item2 {
width: 200px;
height: 200px;
}
</style>
</body>