本帖最后由 小脑斧 于 2020-4-14 17:50 编辑
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>87_局部滚动</title>
<style type="text/css">
body{
background: url('girl.jpg') no-repeat center center;
background-attachment: fixed;/*填充图片*/
margin: 0;
padding: 0;
font-family: "Abadi MT Condensed Light";
position: relative;
/*background-size: cover;*/
}
html,body{
height: 100%;
width: 100%;
}
#intro{
position: absolute;
top: 1%;
left: 16%;
}
#intro h1{
font-size: 55px;
text-transform: capitalize;
color: darksalmon;
}
#intro ul{
margin: 0;
padding: 0;
list-style: none;
}
#intro li{
display: inline-block;
}
#intro li a{
color: deeppink;
font-size: 33px;
/*text-decoration: none;下划线*/
padding: 13px;
}
#content{
width: 6000px;
height: 200px;
background: rgba0,0,0,.11);
/*height: 100%;局部滚动*/
}
.scroll{
width: 1500px;
/*text-align: center;*/
display: block;
box-sizing: border-box;
float: left;
}
.scroll h1{
font-weight: bolder;
}
.scroll p{
font-size: 33px;
}
.scroll img{
float: left;
}
#new{
position: absolute;
bottom: 3%;
width: 100%;
overflow: auto;
}
</style>
</head>
<body>
<div id="intro">
<h1>无门慧开禅师</h1>
<ul>
<li><a href="#chun">spring</a></li> <!-- 锚点-->
<li><a href="#xia">summer</a></li>
<li><a href="#qiu">autumn</a></li>
<li><a href="#dong">winter</a></li>
</ul>
</div>
<div id="new">
<div id="content">
<div class="scroll" id="chun">
<h1>春</h1>
<img src="https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1245195671,1629212421&fm=15&gp=0.jpg">
<p>春有百花<br><br><br><br><br><br></p>
</div>
<div class="scroll" id="xia">
<h1>夏</h1>
<img src="https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1923927927,528396586&fm=15&gp=0.jpg">
<p>夏有凉风<br><br><br><br><br><br></p>
</div>
<div class="scroll" id="qiu">
<h1>秋</h1>
<img src="https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=1200800732,3300049126&fm=15&gp=0.jpg">
<p>秋有鱼<br><br><br><br><br><br></p>
</div>
<div class="scroll" id="dong">
<h1>冬</h1>
<img src="https://ss0.bdstatic.com/70cFuHSh_Q1YnxGkpoWK1HF6hhy/it/u=1381197364,2218742028&fm=15&gp=0.jpg">
<p>冬有雪</p>
</div>
</div>
</div>
</body>
</html>
|