tor-browser

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

animate-preserves3d-ref.html (546B)


      1 <html>
      2  <head>
      3    <style type="text/css">
      4      .pad {
      5        display: block;
      6        height: 20px;
      7      }
      8      .out {
      9        display: block;
     10        position: absolute;
     11        transform-origin: 0 0;
     12        width: 100px;
     13        height: 50px;
     14        overflow: hidden;
     15        left: 108px;
     16      }
     17      .rect {
     18        width: 100px;
     19        height: 50px;
     20        background-color: grey;
     21      }
     22    </style>
     23  </head>
     24  <body>
     25    <div class="pad"></div>
     26    <div class="out">
     27      <div class="rect"></div>
     28    </div>
     29  </body>
     30 </html>