话不多说 先看效果 后看代码 (gif 有点模糊 见谅)
代码如下:
<!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>
/* 取消元素自带的内边距和外边距 */
* {
margin: 0;
padding: 0
}
/* 设置窗口自适应的 */
html,
body {
height: 100%
}
div {
height: 100%;
/* 取消平铺 */
background-repeat: no-repeat;
/* 背景固定 */
background-attachment: fixed;
/* 背景尺寸大小 */
background-size: cover
}
.red {
/* 插入背景图片 */
background-image: url('https://img0.baidu.com/it/u=4285949849,2816553460&fm=253&fmt=auto&app=138&f=JPEG?w=800&h=500');
}
.blue {
/* 插入背景图片 */
background-image: url('https://img1.baidu.com/it/u=1748679971,3116280725&fm=253&fmt=auto&app=138&f=JPEG?w=800&h=500');
}
.yellow {
/* 插入背景图片 */
background-image: url('https://img2.baidu.com/it/u=4154226613,2211547833&fm=253&fmt=auto&app=138&f=JPEG?w=889&h=500');
}
</style>
</head>
<body>
<!-- 三个盒子切换的视觉差案例 -->
<div class="red"></div>
<div class="blue"></div>
<div class="yellow"></div>
</body>
</html>
如有侵权,请联系删除