tor-browser

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

clip-path-animation-retarget-ref.html (351B)


      1 <!DOCTYPE html>
      2 <style>
      3 .container {
      4  width: 100px;
      5  height: 100px;
      6 }
      7 
      8 #animinitial {
      9  background-color: green;
     10  clip-path: inset(20% 20%);
     11 }
     12 
     13 #animfinal {
     14  background-color: green;
     15  clip-path: circle(30% at 30% 30%);
     16 }
     17 </style>
     18 <body>
     19 
     20 <div id="animinitial" class="container"></div>
     21 <div id="animfinal" class="container"></div>
     22 
     23 </body>
     24 </html>