tor-browser

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

translate-animation-on-svg-ref.html (415B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>Animating the "translate" property on an SVG element</title>
      5 <link rel="help" href="https://drafts.csswg.org/css-transforms-2/#individual-transforms">
      6 
      7 <style>
      8 
      9 svg {
     10    width: 400px;
     11    height: 400px;
     12 }
     13 
     14 rect {
     15    width: 200px;
     16    height: 200px;
     17    transform-origin: top left;
     18    translate: 100px 100px;
     19 }
     20 
     21 </style>
     22 </head>
     23 <body>
     24 <svg><rect></rect></svg>
     25 </body>
     26 </html>