目录
1.CSS3新特性
1.1盒子模型新特性
之前使用盒子模型时,提到了使用border、padding会撑大盒子的情况, 为了解决这一问题需要计算border、padding的值然后再相应在盒子的width、height上减去。但是利用CSS3新提供的属性:box-sizing:border-box;就能将盒子的宽、高、border、padding的总宽、高锁定在设定的值,即border、padding不会撑大盒子(相应的,盒子内部用于存放内容的部分会被压缩)。
(图源18-CSS3图片模糊处理_哔哩哔哩_bilibili)
1.2让图片变模糊
(图源同上)
1.3计算盒子宽度函数
注意:“-”号的两侧必须都有一个空格,否则函数无效。
应用:例如让子盒子的宽度始终比父盒子小30px。
1.4过渡
(图源同上)
其中,运动曲线又分为以下几种:
何时开始不仅能设置延迟触发时间,也会影响到效果消失的时间。(例如鼠标移到方框上,1s后方框变成,相应的,鼠标移开后1s方框才会恢复)
过渡施加的对象:谁要产生过度效果就给谁加。
transition属性后面可以限定多个对象的过渡效果,彼此之间用逗号隔开。(例如height 0.5s , width 0.5s)
1.5过渡案例
案例1:制作一个鼠标放上去以过渡效果伸长的进度条。
代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.box {
margin: 100px auto;
width: 100px;
height: 15px;
border-radius: 7.5px;
border: 1px solid rgb(255, 72, 0);
/* 让进度条与外面的方框保留一定距离用padding */
padding: 1px;
}
.inner {
width: 50%;
height: 100%;
background-color: rgb(255, 72, 0);
border-radius: 7.5px;
/* 谁过渡给谁加 */
transition: width .5s;
}
.box:hover .inner {
width: 100%;
}
</style>
</head>
<body>
<div class="box">
<div class="inner"></div>
</div>
</body>
</html>
注意点:让进度条与外面的方框保留一定距离用padding。
案例2:实现小米logo的过渡效果:鼠标经过logo时就过渡性地切换成另一个图案。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
font-family: 'icomoon';
}
@font-face {
font-family: 'icomoon';
src: url('fonts/icomoon.eot?uddjma');
src: url('fonts/icomoon.eot?uddjma#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?uddjma') format('truetype'),
url('fonts/icomoon.woff?uddjma') format('woff'),
url('fonts/icomoon.svg?uddjma#icomoon') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}
.box {
position: relative;
width: 50px;
height: 50px;
background-color: rgb(255, 111, 0);
overflow: hidden;
}
.box2,
.box3 {
width: 50px;
height: 50px;
float: left;
padding-left: 10px;
color: white;
font-size: 30px;
line-height: 50px;
/* background-color: rgba(0, 0, 0, .1); */
}
.box1:hover {
left: -60px;
}
.box1 {
position: absolute;
/* 绝对定位必须写明位置,不然不生效 */
left: 0px;
top: 0px;
width: 120px;
height: 50px;
transition: all 1s;
}
</style>
</head>
<body>
<div class="box">
<div class="box1">
<div class="box2"></div>
<div class="box3"></div>
</div>
</div>
</body>
</html>