scroll-perspective-1-ref.html 435 B

12345678910111213
  1. <!DOCTYPE HTML>
  2. <html>
  3. <body>
  4. <div id="s" style="perspective:300px; width: 500px; height:500px; position:relative; overflow:scroll">
  5. <div id="t" style="position:absolute; top:3000px; transform-style:preserve-3d; transform:translateZ(20px); background:yellow; width:300px; height:0"></div>
  6. <div style="height:4000px"></div>
  7. </div>
  8. <script>
  9. s.scrollTop = 3000;
  10. var tr = t.getBoundingClientRect();
  11. t.style.height = "300px";
  12. </script>