perspective-scrolling-1-ref.html (379B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta charset="utf-8"> 4 <title>Perspective scrolling</title> 5 6 <style> 7 8 html { 9 height: 100%; 10 overflow: hidden; 11 } 12 13 body { 14 height: 100%; 15 perspective: 1px; 16 overflow: auto; 17 margin: 0; 18 } 19 20 div { 21 height: 4000px; 22 margin: 200px 100px; 23 border: 10px solid black; 24 } 25 26 </style> 27 28 <div></div> 29 30 <script> 31 32 document.body.scrollTop = 100; 33 34 </script>