1714763-1-ref.html (551B)
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:2.1; 19 } 20 #rotate { 21 transform: rotate(180deg); 22 transform-origin: 50% 50%; 23 } 24 #theimg { 25 width: 100px; 26 height: 100px; 27 } 28 </style> 29 <body> 30 <div id="target"> 31 <div id="rotate"> 32 <img id="theimg" src="repeatable-diagonal-gradient.png"> 33 </div> 34 </div> 35 36 </body> 37 </html>