tor-browser

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

root-element-transition-ref.html (497B)


      1 <!DOCTYPE html>
      2 <title>View transitions: basic cross-document navigation (ref)</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-view-transitions-2/">
      4 <link rel="author" href="mailto:khushalsagar@chromium.org">
      5 <style>
      6 .old {
      7  width: 50vw;
      8  height: 100vh;
      9  position: fixed;
     10  left: 0px;
     11  top: 0px;
     12  background: blue;
     13 }
     14 .new {
     15  width: 50vw;
     16  height: 100vh;
     17  position: fixed;
     18  left: 50vw;
     19  top: 0px;
     20  background: grey;
     21 }
     22 </style>
     23 <div class="old"></div>
     24 <div class="new"></div>