transition将鼠标悬停在一个div元素上,逐步改变表格的宽度从100px到300px::

    xiaoxiao2021-12-14  17

    <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title</title> <style> div { width:100px; height:100px; background:red; transition:width 2s; } div:hover { width:300px; } </style> </head> <body> <p><b>注意:</b>该实例无法在 Internet Explorer 9 及更早 IE 版本上工作。</p> <div></div> <p>鼠标移动到 div 元素上,查看过渡效果。</p> </body> </html>
    转载请注明原文地址: https://ju.6miu.com/read-971386.html

    最新回复(0)