-
Notifications
You must be signed in to change notification settings - Fork 385
/
cssanimation.html
143 lines (118 loc) · 2.37 KB
/
cssanimation.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title></title>
<meta charset="utf-8">
<style>
@-webkit-keyframes rodaroda {
0% {
-webkit-transform:rotate(0deg);
}
50% {
background:red;
-webkit-transform:rotate(180deg);
}
100% {
background:blue;
-webkit-transform:rotate(360deg);
}
}
@-webkit-keyframes vaivolta {
0% {
top:0;
}
50% {
top:20px;
}
100% {
top:40px;
border-radius:40px;
}
}
@-webkit-keyframes pendura {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(95deg);
}
}
@-moz-keyframes rodaroda {
0% {
-moz-transform:rotate(0deg);
}
50% {
background:red;
-moz-transform:rotate(180deg);
}
100% {
-moz-transform:rotate(360deg);
}
}
@-moz-keyframes vaivolta {
0% {
top:0;
}
50% {
top:20px;
}
100% {
top:40px;
border-radius:40px;
}
}
@-moz-keyframes pendura {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(95deg);
}
}
.giragira {
width:50px;
height:50px;
margin:15px 0 0 15px;
background:black;
-webkit-animation: rodaroda 1s linear alternate 3;
-moz-animation: rodaroda 0.5s linear infinite;
-o-animation: rodaroda 0.5s linear infinite;
animation: rodaroda 0.5s linear infinite;
}
.vaivolta {
width:50px;
height:50px;
margin:35px auto 0;
background:black;
position:absolute;
left:20%;
-webkit-animation: vaivolta 1s alternate linear infinite;
-moz-animation: vaivolta 1s alternate linear infinite;
-o-animation: vaivolta 1s alternate linear infinite;
animation: vaivolta 1s alternate linear infinite;
}
.pendura {
width:50px;
height:50px;
margin:35px auto 0;
background:black;
-webkit-transform: rotate(0deg);
-webkit-transform-origin: 0px 0px;
-moz-transform: rotate(0deg);
-moz-transform-origin: 10px 10px;
-o-transform: rotate(0deg);
-o-transform-origin: 10px 10px;
-webkit-animation: pendura 1s alternate ease infinite;
-moz-animation: pendura 1s alternate ease infinite;
-o-animation: pendura 1s alternate ease infinite;
}
.pendura:hover {-webkit-animation-play-state:paused;}
</style>
</head>
<body>
<div class="giragira"></div>
<div class="vaivolta"></div>
<div class="pendura"></div>
<p>Exemplo parte do artigo <a href="http://www.tableless.com.br/css3-animation-keyframe" title="CSS3 - Aniamtion e Keyframe">CSS3 – Animation e regra keyframe</a>.
</body>
</html>