CSS3 is great. I look forward to a time when we don’t need to use -webkit -moz -o etc…
Note, this is webkit only so use chrome, safari, mobile safari or some other webkit browser at supports 3d transformations.
Here’s the code:
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
| <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title></title>
<style>
div{
position : absolute;
width : 100px;
height : 20px;
left : 20%;
top : 50%;
background-color : #7e9fc2;
-webkit-transform : rotateZ(45deg) scale3d(0.9,0.9,1);
-webkit-transform-origin : 0px 10px;
-webkit-animation : rotate 3s infinite linear;
-webkit-box-shadow : 0px 0px 10px 5px rgba(0,0,0,0.2);
}
div div{
left : 100px;
top :0px;
}
@-webkit-keyframes rotate{
from {
-webkit-transform : rotateZ(0deg) scale3d(0.9,0.9,1);
}
to {
-webkit-transform : rotateZ(360deg) scale3d(0.9,0.9,1);
}
}
</style>
</head>
<body>
<div>
<div>
<div>
<div>
</div>
</div>
</div>
</div>
</body>
</html> |
I use all 3d transformations here so that it gets hardware accelerated on the iphone/ipad.