过渡属性transition

自古美人都是妖i 提交于 2019-11-29 18:29:13

过渡属性:使元素变化过程可见
transition: all 1s;元素所有变化过程都可见
transition: 1s;元素所有变化过程都可见
transition: 指定属性 2s 1s;指定属性变化过程可见,过渡时间2s,延迟1s,过渡时间和延迟时间顺便不可以调整

案例:

(1)html

<div></div>

(2)css

div{
width: 100px;
height: 100px;
background: red;
transition: width 2s,height 2s 1s;
}
div:hover{
width: 200px;
height: 200px;
background: lime;
}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!