W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <head> <style> #myDIV { width: 100px; height: 100px; background: yellow; -webkit-transition: 2s; /* 针对 Safari 3.1 到 6.0 */ transition: 2s; } #myDIV:hover { width: 400px; } </style> </head> <body> <p>请将鼠标悬停在下方的 div 元素上,等待过渡效果结束。</p> <p>propertyName 属性返回过渡效果所对应的 CSS 属性的名称。</p> <div id="myDIV"></div> <p><b>注释:</b>本例在 Internet Explorer 9 和更早版本中不起作用。</p> <script> // 针对 Safari 3.1 到 6.0 的代码 document.getElementById("myDIV").addEventListener("webkitTransitionEnd", myFunction); // 标准语法 document.getElementById("myDIV").addEventListener("transitionend", myFunction); function myFunction(event) { this.innerHTML = "CSS Property used: " + event.propertyName; } </script> </body> </html>