HTML 检查溢出 - 文本位置

发布于 2024-12-02 19:28:39 字数 171 浏览 1 评论 0原文

我制作了一个带有自定义滑块的侧边栏,我想要做的是当侧边栏滚动到顶部/底部时更改滑块的图像。我有一个溢出:隐藏,但我不知道如何检查它是在底部还是顶部。

网站

-- David

I made a sidebar with custom sliders and what I want to do is change the image of slider when the sidebar scrolled to top/bottom. I have a overflow:hidden but I don't know how to check if it's on the bottom or top.

Website

-- David

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆伤 2024-12-09 19:28:39

这当然取决于您如何实现滑块(您添加的链接效果不太好),但例如,如果它位于顶部时发生的变化只是它与嵌套的 div 顶部的距离,那么只需添加每当滑块完成移动时都会检查 topbottom CSS 属性是否等于 0,如下所示:

if ((document.getElementById("myimage").style("top")==0) {
    document.getElementById("myimage").setAttribute("src","topImageSrc");
}

if ((document.getElementById("myimage").style("bottom")==0) {
    document.getElementById("myimage").setAttribute("src","bottomImageSrc");
}

It depends of course on how you implement your slider (The link you added doesn't work too well) but for example, if what changes when it's on the top is simply it's distance from the top of the div it's nested in then simply add a check whenever the slider finishes it's movement to check if the top or botttom CSS property is equal to 0, as done here:

if ((document.getElementById("myimage").style("top")==0) {
    document.getElementById("myimage").setAttribute("src","topImageSrc");
}

if ((document.getElementById("myimage").style("bottom")==0) {
    document.getElementById("myimage").setAttribute("src","bottomImageSrc");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文