标签:css flash动画 现在 运动 低版本 必须 hover javascrip ie9
使用的口诀:谁做过渡给谁家,谁需要变化给谁加
transition:要过渡的属性(空格)花费时间(空格)运动曲线(空格)何时开始;
<style>
div {
width: 100px;
height: 100px;
background-color: #008484;
/* transition: 变化的属性 花费时间 运动曲线 何时开始; */
transition: width .5s ease .5s;
}
div:hover {
width: 300px;
}
</style>
<style>
div {
width: 100px;
height: 100px;
background-color: #008484;
/* transition: 变化的属性 花费时间 运动曲线 何时开始; */
<!-- transition: width .5s ease .5s,height .5s ease .5s; -->
transition: all .5s ease .5s;
}
div:hover {
width: 300px;
height: 200px;
}
</style>
标签:css flash动画 现在 运动 低版本 必须 hover javascrip ie9
原文地址:https://www.cnblogs.com/landuo629/p/12444930.html