offset-path-url-001-ref.html (413B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Motion Path Referecne: url() to svg paths</title> 5 <style> 6 #target { 7 width: 50px; 8 height: 50px; 9 background-color: green; 10 transform: translate(100px, 60px) rotate(90deg); 11 transform-origin: 0% 0%; 12 border-radius: 50% 50% 0 0; 13 } 14 </style> 15 </head> 16 <body> 17 <div id="target"></div> 18 </body> 19 </html>