tor-browser

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

rotate-animation-with-will-change-transform-001-ref.html (412B)


      1 <!DOCTYPE html>
      2 <title>CSS Test (Transforms): Transform and perspective with w negative</title>
      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 div {
      9  width: 100px;
     10  height: 100px;
     11  transform: rotateY(44deg);
     12  background: fuchsia;
     13  transform-origin: 100px 0;
     14  will-change: transform;
     15 }
     16 
     17 </style>
     18 
     19 <div></div>