OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 |
| 3 <html> |
| 4 <head> |
| 5 <style> |
| 6 body { |
| 7 height: 2000px; |
| 8 width: 2000px; |
| 9 overflow: hidden; |
| 10 } |
| 11 |
| 12 .box { |
| 13 height: 300px; |
| 14 width: 300px; |
| 15 margin: 20px; |
| 16 margin-left: 10px; |
| 17 background-image: url('../resources/alpha-blocks.png'); |
| 18 |
| 19 background-size: 500px 300px; |
| 20 background-repeat: no-repeat; |
| 21 background-attachment: fixed; |
| 22 box-shadow: 10px 10px 0px gray; /* inflates composited bounds */ |
| 23 border: 4px solid gray; |
| 24 float: left; |
| 25 } |
| 26 |
| 27 .composited { |
| 28 -webkit-transform: translateZ(0); |
| 29 } |
| 30 </style> |
| 31 <script> |
| 32 function doTest() |
| 33 { |
| 34 window.scrollTo(35, 45); |
| 35 } |
| 36 window.addEventListener('load', doTest, false); |
| 37 </script> |
| 38 </head> |
| 39 <body> |
| 40 |
| 41 <div class="composited box"></div> |
| 42 <div class="composited box"></div> |
| 43 |
| 44 </body> |
| 45 </html> |
OLD | NEW |