-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (52 loc) · 1.78 KB
/
index.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>FlexBox and KeyFrames</title>
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/delay.css">
<link rel="stylesheet" href="./css/animation-replay.css">
<link rel="stylesheet" href="./css/direction.css">
<link rel="stylesheet" href="./css/exceleration.css">
<link rel="stylesheet" href="./css/shorthand.css">
<link rel="stylesheet" href="./css/rotate.css">
</head>
<body>
<!--Basic animation with nothing special-->
<h1>KeyFrames - basic animation</h1>
<div id="example1">
<div id="box"></div>
</div>
<!--Does the animation begin with a delay-->
<h1>KeyFrames - Delay in animation</h1>
<div id="example2">
<div id="box-delay"></div>
</div>
<!--How many times animation plays-->
<h1>KeyFrames - Interation of animation</h1>
<div id="example3">
<div id="box-iteration"></div>
</div>
<!--Direction of animation-->
<h1>KeyFrames - Direction of animation</h1>
<div id="example4">
<div id="box-direction"></div>
</div>
<!--Direction of animation-->
<h1>KeyFrames - Exceleration of animation</h1>
<div id="example5">
<div id="box-exceleration"></div>
</div>
<!--Shorthand code for animation-->
<h1>KeyFrames - ShortHand code for animation properties</h1>
<div id="example6">
<div id="box-shorthand"></div>
</div>
<!--Rotate animation-->
<h1>KeyFrames - Rotate and border radius animation - changing square animation to circle</h1>
<div id="example7">
<div id="box-rotate"></div>
</div>
</body>
</html>