BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <body> <p><b>Note:</b> This example only works in Google Chrome.</p> <svg version="1.1" xmlns="http://www.w3.org/2000/svg"> <rect height="60" width="90" x="10" y="20"> <animateColor attributeName="fill" dur="3s" from="red" id="a1" to="blue" /> </rect> <rect height="60" width="90" x="10" y="120"> <animateColor attributeName="fill" begin="a1.end" dur="3s" from="blue" id="a2" to="yellow" /> </rect> <rect height="60" width="90" x="10" y="220"> <animateColor attributeName="fill" begin="a2.end" dur="3s" from="yellow" id="a3" to="green" /> </rect> </svg> </body> </html>
运行结果