gpt4 book ai didi

javascript - 允许 div 滚动 x 量然后停止?

转载 作者:太空宇宙 更新时间:2023-11-03 19:05:47 24 4
gpt4 key购买 nike

我有一个 700px 高的 div,在那个 div 下面是一张 200px 的图片。我想允许滚动第一个 700px,然后不再滚动。因此,在较小的垂直分辨率下,用户可以滚动查看前 700 像素,但其余部分将被“chop ”。

另一方面,垂直分辨率较大的用户将看到 700 像素的 div 和没有滚动条的图片。

如何实现?

最佳答案

您可以使用 css 媒体查询在不同的窗口大小上使用不同的 css。

@media all and (min-width: 350px) and (min-height: 950px) {
// css for a window size of 250px height and 750px width or higher
}

所以你想做这样的事情?

.content {
height: 700px;
width: 300px;
}

.main {
height: 700px;
width: 100%;
background-color: red;
}

.pic {
display: none;
height: 200px;
width: 100%;
background-color: blue;
}

@media all and (min-height: 950px) {
.content {
height: 900px;
}
.pic {
display: block;
}
}

关于javascript - 允许 div 滚动 x 量然后停止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10313511/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com