tor-browser

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

clip-path-animation-svg-zoom-ref.html (357B)


      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    zoom: 1.25;
     16  }
     17 
     18 </style>
     19 
     20 <body>
     21  <svg class="svg">
     22    <circle class="clipped" cx="40" cy="40" r="40" />
     23  </svg>
     24 
     25 </body>
     26 
     27 </html>