1714763-3-ref.html (602B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 html { 5 /* Suppress scrollbars to avoid periodical unthrottling for transform */ 6 /* animations on the compositor. */ 7 overflow: hidden; 8 } 9 body { 10 margin: 0px; 11 padding: 0px; 12 } 13 14 #target { 15 position: absolute; 16 left:100px; 17 top:100px; 18 scale:1.9; 19 } 20 #rotate { 21 transform: rotate(180deg); 22 transform-origin: 50% 50%; 23 } 24 </style> 25 <body> 26 <div id="target"> 27 <div id="rotate"> 28 <svg width="100" height="100"> 29 <g id="g"> 30 <circle cx="100" cy="100" r="40" style="fill: rgb(200, 20, 20);"></circle> 31 </g> 32 </svg> 33 </div> 34 </div> 35 36 </body> 37 </html>