tor-browser

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

viewport-100vh.html (420B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>Handle zero animation range</title>
      5  <style>
      6    @keyframes card {
      7        0% { scale: 1; }
      8      100% { scale: 1; }
      9    }
     10    .SignetCard {
     11      height: 100px;
     12      animation-name: card;
     13      animation-duration: 1ms;
     14      animation-fill-mode: both;
     15      animation-timeline: view(block 100vh);
     16    }
     17  </style>
     18 </head>
     19 <body>
     20  <div class="SignetCard"></div>
     21 </body>
     22 </html>