tor-browser

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

3d-scene-with-iframe-001-ref.html (425B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <link rel="author" title="L. David Baron" href="https://dbaron.org/">
      4 <link rel="author" title="Google" href="http://www.google.com/">
      5 
      6 <style>
      7 
      8 #container {
      9    perspective: 400px;
     10    perspective-origin: 0 0;
     11 }
     12 #ref {
     13    background-color: green;
     14    width: 150px;
     15    height: 100px;
     16    transform: translateZ(200px);
     17 }
     18 
     19 </style>
     20 
     21 <div id="container">
     22    <div id="ref"></div>
     23 </div>