-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransition in CSS.html
40 lines (34 loc) · 1.01 KB
/
Transition in CSS.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>transition in CSS</title>
<style>
.container{
background-color: antiquewhite;
width: 55vw;
height: 40vh ;
}
.box{
background-color: aquamarine;
width: 5vw;
height: 4vh;
/* transition-property: background-color, transform;
transition-duration: 3s;
transition-timing-function: cubic-bezier(0.42, 0, 0, 0.92);
transition-delay: 1s; */
transition: all 3s cubic-bezier(0, 0, 0, 1.1) 1s
}
.translate{
transform: translateX(10vw) translateY(10vh) scale(2);
background-color: blue;
}
</style>
</head>
<body>
<div class="container">
<div class="box translate"></div>
</div>
</body>
</html>