tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

perspective-scrolling-2-ref.html (438B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <meta charset="utf-8">
      4 <title>Perspective in unscrolled state</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 .transformed {
     21  margin: 200px 100px;
     22  width: 200px;
     23  height: 200px;
     24  border: 10px solid black;
     25 }
     26 
     27 .spacer {
     28  height: 4000px;
     29 }
     30 
     31 </style>
     32 
     33 <div class="transformed"></div>
     34 <div class="spacer"></div>