OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 div { | |
4 position: absolute; | |
5 width: 100px; | |
6 height: 100px; | |
7 background: black; | |
8 animation: test 1e8s; | |
9 } | |
10 @keyframes test { | |
11 from {transform: translate(100px, 100px);} | |
12 to {transform: translate(100px, 100px);} | |
13 } | |
14 </style> | |
15 <div></div> | |
16 <script> | |
17 internals.setZoomFactor(2); | |
18 </script> | |
OLD | NEW |