執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
轉到Spaces
<!DOCTYPE html> <html> <body> <h2>Rectangle that fades away</h2> <svg width="400" height="280"> <rect x="20" y="20" width="250" height="250" style="fill:blue"> <animate attributeType="CSS" attributeName="opacity" from="1" to="0" dur="5s" repeatCount="indefinite" /> </rect> Sorry, your browser does not support inline SVG. </svg> <p><strong>Note:</strong> This example does not work in Firefox.</p> </body> </html>