repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
animations
/
webkit-perspective.html
blob
d36c7ebe7c844c8d94852a1e3b193f1ade8beeb8
1
<!DOCTYPE
html
>
2
<style>
3
#perspective {
4
-webkit-animation: anim
1
s infinite;
5
height:
150
px;
6
width:
150
px;
7
margin:
50
px;
8
padding:
10
px;
9
}
10
@-webkit-keyframes anim {
11
0
% { -webkit-perspective:
150
px; }
12
100
% { -webkit-perspective:
150
px; }
13
}
14
#transform {
15
width:
150
px;
16
height:
150
px;
17
background: blue;
18
transform: rotateY(
45
deg);
19
}
20
</style>
21
<div
id
=
"perspective"
>
22
<div
id
=
"transform"
>
23
</div>
24
</div>