SVG 2 64070167 นนทพัทธ์ จิ๋วน๊อต (Copy 19233)
✨ NONTAPAT JIEWNOD
<html> <head> <title>SVG </title> <style> body{ background:#666; margin:0em; margin-top:2em; font-family:sans-serif; } svg{ background:white; width:90vmin; height:90vmin; display:block; margin:auto; box-shadow:0px 0px 10px #0006; } </style> </head> <body> <svg viewBox="0 0 100 100"> <path d="M25,80 h50 v-40 h-50 v40" stroke="red" fill="black" > <animate attributeName="fill" values="black;white;black" dur="2" repeatCount="indefinite"> </animate> </path> <path d="M25,40 l25,-20 l25,20" stroke="red" fill="black" /> <path d="M40,80 h20 v-20 h-20 v20" fill="black" stroke="red"></path> </svg> </body> </html>