-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtr-function.html
More file actions
48 lines (48 loc) · 843 Bytes
/
tr-function.html
File metadata and controls
48 lines (48 loc) · 843 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
48
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>Transition timing function</title>
<style>
#ex div{
float: left;
width: 100px;
height: 50px;
margin: 5px 10px;
padding: 5px;
color: white;
background-color: #006aff;
border-radius: 5px;
text-align: center;
font-weight: bold;
}
#ex:hover div{
height: 400px;
}
#ex .ease {
transition: 3s ease;
}
#ex .linear{
transition: 3s linear;
}
#ex .ease-in{
transition: 3s ease-in;
}
#ex .ease-out{
transition: 3s ease-out;
}
#ex .ease-in-out{
transition: 3s ease-in-out;
}
</style>
</head>
<body>
<div id="ex">
<div class="ease"> ease </div>
<div class="linear"> linear </div>
<div class="ease-in"> ease-in </div>
<div class="ease-out"> ease-out </div>
<div class="ease-in-out"> ease-in-out </div>
</div>
</body>
</html>