-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample1.css
More file actions
47 lines (39 loc) · 825 Bytes
/
example1.css
File metadata and controls
47 lines (39 loc) · 825 Bytes
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
html, body{
margin: 0; padding: 0;overflow: auto;
width: 100%;height: 100%; box-sizing: border-box;
border: solid 1px red;
}
.box{
position: absolute;
width: 200px;
height: 120px;
top:0;left:0;right: 0;bottom: 0; margin: auto;
background-color: transparent;
border: solid 1px;
border-color: rgba(0,255,0,0.6);
box-shadow: 0 0 1px 0 rgba(0,255,0,0.9), inset 0 0 1px 0 rgba(0,255,0,0.9);
transition: all 8s;
transition-timing-function: easy-in-out;
}
.one{
transition-delay: 0s;
}
.two{
transition-delay: 0.1s;
}
.three{
transition-delay: 0.15s;
}
.four{
transition-delay: 0.24s;
}
.five{
transition-delay: 0.41s;
}
.six{
transition-delay: 0.59s;
}
.main:hover>div{
background-color: transparent;
-webkit-transform: rotateZ(4050deg);
}