tor-browser

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

clip-path-animation-polygon-ref.html (233B)


      1 <!DOCTYPE html>
      2 <html>
      3 <style>
      4  .container {
      5    width: 100px;
      6    height: 100px;
      7    background-color: green;
      8    clip-path: polygon(10% 10%, 90% 10%, 50% 90%);
      9  }
     10 </style>
     11 
     12 <body>
     13  <div class="container"></div>
     14 </body>
     15 
     16 </html>