tor-browser

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

doc_short_duration.html (421B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3  <head>
      4    <meta charset="UTF-8">
      5    <style>
      6    div {
      7      background-color: lime;
      8      height: 100px;
      9    }
     10    </style>
     11  </head>
     12  <body>
     13    <div class="short"></div>
     14    <script>
     15    "use strict";
     16 
     17    document.querySelector(".short").animate(
     18      { opacity: [1, 0] },
     19      {
     20        duration: 1,
     21        iterations: Infinity,
     22      }
     23    );
     24    </script>
     25  </body>
     26 </html>