CSS 参考手册
CSS3 transition-duration 属性
最后5秒出现切换效果
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> div { width: 100px; height: 100px; background: red; transition-property: width; transition-duration: 5s; /* Safari */ -webkit-transition-property: width; -webkit-transition-duration: 5s; } div:hover { width: 300px; } </style> </head> <body> <p><b>注意:</b> 该属性不兼容IE9 以及更早版本的浏览器</p> <div></div> <p>将鼠标移动到块上查看动画效果.</p> </body> </html>
运行结果:
点击运行 »