-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransition.html
30 lines (28 loc) · 1 KB
/
transition.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="transitions.css">
<title>Transitions</title>
</head>
<body>
<!-- Transition CSS: transition-duration -->
<h4>No Transition</h4>
<p class="box"></p>
<!-- Transition CSS: transition-property -->
<h4>Transition</h4>
<p class="animated box"></p>
<!-- Transition CSS: transition-delay -->
<h4>Transition Delay</h4>
<p class="animated-delay box"></p>
<!-- Transition CSS: transition-timing-function - easing.net, transition timing function -->
<h4>Transition Timint function</h4>
<p class="animated-timing box"></p>
<!-- Transition CSS: transition sorthand way -->
<h4>Transition in single step</h4>
<p class="animated-inone box"></p>
<!-- https://www.html5rocks.com/en/tutorials/speed/high-performance-animations/ -->
</body>
</html>