tor-browser

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

mask-position-in-delay-1a.html (522B)


      1 <!DOCTYPE html>
      2 <title>mask-position animation in delay phase</title>
      3 <style>
      4 @keyframes holdMaskPosition {
      5  from,to { mask-position: left top; }
      6 }
      7 #test {
      8  background-color: blue;
      9  height: 100px;
     10  width: 100px;
     11  mask-repeat: no-repeat;
     12  mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"><rect x="0" y="0" width="25" height="25" fill="blue"/></svg>');
     13  animation: holdMaskPosition 100s 100s infinite;
     14  mask-position: center center;
     15 }
     16 </style>
     17 <div id="test"></div>