tor-browser

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

clip-path-animation-svg-ref.html (341B)


      1 <!DOCTYPE html>
      2 <html>
      3 <style>
      4  .clipped {
      5    background-color: green;
      6    stroke: black;
      7    stroke-width: 3;
      8    fill: red;
      9    clip-path: circle(35% at 50% 50%);
     10  }
     11 
     12  .svg {
     13    width: 100px;
     14    height: 100px;
     15  }
     16 
     17 </style>
     18 
     19 <body>
     20  <svg class="svg">
     21    <circle class="clipped" cx="50" cy="50" r="40" />
     22  </svg>
     23 
     24 </body>
     25 
     26 </html>