OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
2 <style> | |
3 @-webkit-keyframes boring { | |
4 0% { transform: translateZ(0px); } | |
5 100% { transform: translateZ(0px); } | |
6 } | |
7 #scroller { | |
8 width: 100px; | |
9 height: 100px; | |
10 overflow: scroll; | |
11 animation: boring 5s infinite; | |
12 visibility: hidden; | |
13 } | |
14 #scrolled { | |
15 width: 10px; | |
16 height: 10px; | |
17 position: relative; | |
18 background: blue; | |
19 visibility: hidden; | |
20 top: 300px; | |
21 } | |
22 </style> | |
23 <div id="scroller"> | |
24 <div id="scrolled"></div> | |
25 </div> | |
OLD | NEW |