我试图用 html 构建一个 ui。
- 导航栏应保持在顶部
- 导航栏下方的一些视频和其他内容应该在视频上滚动(现在它是棕色框)。
- 天蓝色框(用于侧面导航)应停止在导航框下方,粉红色框(内容框)应继续滚动。
问题 :
- 滚动后,粘性导航框向上滚动,并且
- 天蓝色框不会停在导航框下方。请查看codepen并帮助我.... html
body,
html {
height: 100%;
width: 100%;
margin: 0;
}
.container {
display: flex;
position: relative;
top: 400px;
border-top: 4px solid black;
}
.box1 {
/* height:500px; */
position: sticky;
top: 50px;
width: 40%;
background-color: aqua;
border: 2px solid grey;
}
.box2 {
height: 1000px;
width: 60%;
background-color: pink;
}
.nav {
position: sticky;
top: 0;
background-color: blue;
z-index: 1000;
height: 50px;
}
.image-con {
position: fixed;
background-color: brown;
border: 2px solid yellow;
height: 500px;
width: 100%;
z-index: -1000;
}
<div class="nav"></div>
<div class="image-con"></div>
<div class="container">
<div class="box1"></div>
<div class="box2"></div>
</div>