PHP前端开发

如何使用CSS延迟过渡效果

百变鹏仔 3个月前 (09-20) #CSS
文章标签 如何使用

使用CSS的transition-delay属性来延迟过渡效果。您可以尝试运行以下代码来设置1秒的过渡延迟:

示例

在线演示

<!DOCTYPE html><html>   <head>      <style>         div {            width: 150px;            height: 150px;            background: blue;            transition: width 3s;            transition-delay: 1s;         }         div:hover {            width: 250px;         }      </style>   </head>   <body>      <h1>Heading One</h1>      <p>Hover over the below box to change its width. It begins with a delay of 1 second.</p>      <div></div>   </body></html>