<style>
div{
    width:300px;
    height:300px;
    background:#89F;
    margin:100px auto;

    transition:width 1s ease-out .5s;
    -moz-transition:width 1s ease-out .5s;
    -webkit-transition:width 1s ease-out .5s;
    -o-transition:width 1s ease-out .5s;
}
div:hover{
    width:600px;
}
</style>

<div></div>

 

相关文章:

  • 2021-09-28
  • 2021-12-04
  • 2021-12-12
  • 2021-07-25
  • 2021-08-16
猜你喜欢
  • 2022-12-23
  • 2021-12-22
  • 2021-10-13
  • 2021-10-09
  • 2022-02-25
  • 2022-01-25
  • 2022-03-02
相关资源
相似解决方案