tor-browser

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

element-is-grouping-during-animation-ref.html (435B)


      1 <!DOCTYPE html>
      2 <html>
      3 <title>View transitions: element remains grouping during transition</title>
      4 <link rel="help" href="https://www.w3.org/TR/css-view-transitions-1/">
      5 <link rel="author" href="mailto:vmpstr@chromium.org">
      6 
      7 <style>
      8 .parent {
      9  top: 0;
     10  width: 100px;
     11  height: 100px;
     12  position: absolute;
     13  background: green;
     14 }
     15 body {
     16  perspective: 1000px;
     17  height: 500px;
     18  background: pink
     19 }
     20 </style>
     21 
     22 <div class=parent></div>