blob: f9a1707fa98971bf8ae39117c97ab1bda3b03700 (
plain)
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
|
<!DOCTYPE HTML>
<style>
#animDiv {
position: absolute;
width: 176px;
height: 91px;
background-image: none;
background-color: #00cc35;
left: -164.5px;
top: 184.5px;
}
#clipper {
overflow: hidden;
width: 700px;
height: 700px;
margin: -10px;
}
#shake {
position:absolute;
width:200px;
height:64px;
left:51px;
top:121px;
border-style:solid;border-width:1px;
transform:translateZ(0);
}
#container {
perspective: 1400px;
}
</style>
<div id="clipper">
<div id="container">
<div id="animDiv"></div>
<div id="shake"></div>
</div>
</div>
|