tor-browser

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

opacity-animation-in-delay.html (383B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait reftest-no-flush">
      3 <style>
      4 @keyframes anim {
      5 from { opacity: 0.5; }
      6 to { opacity: 0.5; }
      7 }
      8 div {
      9  background: green;
     10  width: 100px;
     11  height: 100px;
     12  animation: anim 100s 100s;
     13  opacity: 0;
     14 }
     15 </style>
     16 <div></div>
     17 <script>
     18 requestAnimationFrame(() => {
     19  document.documentElement.classList.remove('reftest-wait');
     20 });
     21 </script>
     22 </html>