clip-path-animation-path-ref.html (253B)
1 <!DOCTYPE html> 2 <html> 3 <style> 4 .container { 5 width: 200px; 6 height: 200px; 7 background-color: green; 8 clip-path: path('M 0 150 L 15,75 A 5,5 0,0,1 150,75 L 150 150 z'); 9 } 10 </style> 11 12 <body> 13 <div class="container"></div> 14 </body> 15 16 </html>