-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
56 lines (54 loc) · 1.04 KB
/
index.css
File metadata and controls
56 lines (54 loc) · 1.04 KB
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
body{
}
#one{
width: 200px;
background-color: purple;
transition: 3s;
transition-timing-function: 3s;
}
#four{
height:100px;
width: 100px;
background-color: pink;
transition: 3s;
transition-timing-function:3s ;
transition-timing-function: ease-in-out;
}#parent{
border: 2px solid red;
height: 800px;
width: 1000px;
}
#one{
height:700px;
width: 800px;
background-color: black;
transition: 3s;
transition-timing-function: ease-in;
}
#parent:hover .one{
margin-left: 900px;
border-radius: 50%;
transform:margin-left(150deg);
/* transition-property: all; */
/* transform: matrix(4); */
}
#one{
height:100px;
width: 100px;
background-color: red;
transition-timing-function: 3s;
}
#two{
height:100px;
width: 100px;
background-color: blue;
transition: 3s;
transition-timing-function: 3s;
}
#three{
height:100px;
width: 100px;
background-color: rgb(192, 255, 228);
transition: 3s;
transition-timing-function: 3s
}