css动画 - 过度

描述
transition-property 规定设置过渡效果的 CSS 属性的名称。
transition-duration 规定完成过渡效果需要多少秒或毫秒。
transition-timing-function 规定速度效果的速度曲线。
transition-delay 定义过渡效果何时开始。
  <style>
    div {
        width: 100px;
        height: 100px;
        background-color: pink;
        /*设置过度*/
        transition: all 0.5s ease;
    }

    div:hover {
        width: 200px;
        height: 200px;
        background-color: red;
    }
  </style>


  <div> </div>

 

posted on 2022-04-07 14:13  每天积极向上  阅读(37)  评论(0编辑  收藏  举报

导航