gpt4 book ai didi

html - 向下滚动一点后如何在粘性导航上按下按钮?

转载 作者:太空宇宙 更新时间:2023-11-04 06:10:39 24 4
gpt4 key购买 nike

我正在使用 React 构建一个网站,并首先处理移动版本。有一个粘性导航栏,向下滚动后会粘在顶部。我附上一张图片,右侧有一个按钮。我希望那个按钮在向下滚动后看起来像那样。所以,首先,按钮在顶部,然后向下滚动一点后,导航变得粘稠,按钮也有点滑到导航上。我正在用 React 制作这个网站。这怎么可能?谢谢!

图片:

enter image description here

最佳答案

您可以在代码中添加一些 javascript 来实现这一点。

let scroller = document.querySelector(".scroll");
document.addEventListener('scroll', scroll);
function scroll(){
scroller.style.display = 'block';
}
.scroll{
display: none;
}
<html>
<body>
<button class = "scroll">Scroller</button>
</body>
</html>

关于html - 向下滚动一点后如何在粘性导航上按下按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56453815/

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