-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtransitions.html
55 lines (32 loc) · 867 Bytes
/
transitions.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
<!DOCTYPE html>
<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>Animations</title>
<link rel="stylesheet" href="transitions.css">
</head>
<body>
<!-- Transform boxes through translate -->
<!-- <div class="box slide-right">
</div>
<div class="box slide-left">
</div>
<div class="box slide-down">
</div>
<div class="box slide-up">
</div> -->
<!-- Transform boxes through scale -->
<!-- <div class="box scale-down">
</div> -->
<!-- Transform boxes through rotate -->
<!-- <div class="box rotate">
</div> -->
<!-- Transform boxes through Opacity -->
<!-- <div class="box opaqueify">
</div> -->
<!-- Transition color and background color on hover -->
<button>Hover Me!</button>
</body>
</html>