过渡 transition
是CSS3中具有颠覆性的特征之一,我们可以在
不使用Flash动画或JavaScript的情况下,当元素从一种样式变换为另一一种样式时为元素添加效果。
div {
width: 200px;
height: 100px;
background-color: green;
/* transition: 过渡的属性 划分时间 运动曲线 何时开始 */
transition: all 0.4s ease 0.3s; /*all就是全部属性的意思*/
}
div:hover {
width: 300px;
height: 200px;
background-color: skyblue;
}
transition: 要过渡的属性 花费时间 运动曲线 何时开始;
- 属性 :想要变化的css属性,宽度高度背景颜色内外边距都可以。如果想要所有的属性者变 化过渡,写一个 all 就可以。
- 花时:单位是秒 必须写单位 比如0.5s
- 运动曲线:默认是ease 可以省略
- 何时开始:单位是秒(必须写单位)可以设置延迟触发时间默认是0s ( 可以省略 )
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 250px;
height: 10px;
border: 1px solid red;
border-radius: 6px;
padding: 1px;
}
.box::before {
content: '';
display: block;
width: 50%;
height: 100%;
background-color: red;
border-radius: 5px;
transition: all .5s;
}
.box:hover::before {
width: 100%;
background-color: tomato;
}
</style>
</head>
<body>
<div class="box">
<div class="box_son"></div>
</div>
</body>
</html>
运行结果自行复制到编辑器里打开 这里我就不在演示了
有什么问题可以评论区留言 最后大家一起加油吧~~