tor-browser

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

1424798-1.html (386B)


      1 <!DOCTYPE HTML>
      2 <title>Animation between 1-argument and 2-argument transforms should work</title>
      3 <style>
      4 #box {
      5  transform: translate(0%);
      6  width: 100px;
      7  height: 100px;
      8  background-color: red;
      9 }
     10 @keyframes anim {
     11    from { transform: translate(0%); }
     12    to { transform: translate(0%, 100px); }
     13 }
     14 #box {
     15 animation: anim 100s linear -50s paused;
     16 }
     17 </style>
     18 
     19 <div id="box">
     20 </div>