gpt4 book ai didi

javascript - 当滚动元素停止特定点

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

如何在滚动时在特定点停止元素?

这是我使用的源代码。

body {
height: 100vh;
margin: 0;
padding: 0;
}
.s1, .s2, .s3 {
height: 100vh;
}
.s1 {
display: flex;
justify-content: center;
align-items: center;
border: 1px solid green;
}
.s2 {
display: flex;
justify-content: center;
align-items: center;
background-color: aqua;
border: 1px solid aqua;
}
.s3 {
background-color: beige;
}
.s1 .p1 {
position: fixed;
}
<html>
<body>
<div class="s1">
<p class="p1">TEST</p>
</div>
<div class="s2">
<p class="p2">STOP HERE</p>
</div>
<div class="s3">

</div>
</body>
</html>

只是简单的代码。我定义了 position: fixed .s1 的 <p>标签。

所以 <p>向下或向上滚动时始终 float 在屏幕中央。

向下滚动时,如果 .s1 的 <p>标记符合 .s2 的 <p>标记,它必须停止。

此外,如果向上滚动,.s1 的 <p>标签必须向上移动。

我想用纯html/css/js来实现这个问题。

不过是可以的,用library就可以了。(也许它必须使用视差滚动或其他..我不知道)

这里有解决办法吗?

谢谢。

最佳答案

我添加了一个控制台日志,以便您可以在滚动时看到 .s1 p 何时触及 .s2 p

window.onload = function() {  
let s1P = document.querySelector('.s1 p');
let s2P = document.querySelector('.s2 p');

let scroll = () => {
let coordS1P = s1P.getBoundingClientRect();
let coordS2P = s2P.getBoundingClientRect();

// touched while scrolling down condition
if(coordS1P.bottom > coordS2P.top && coordS1P.top < coordS2P.bottom) console.log('touched!');

// touched while scrolling up condition
else if(coordS1P.bottom > coordS2P.top && coordS1P.top < coordS2P.bottom) console.log('touched!');
};

window.addEventListener('scroll', scroll, true);
}
body {
height: 100vh;
margin: 0;
padding: 0;
}
.s1, .s2, .s3 {
height: 100vh;
}
.s1 {
display: flex;
justify-content: center;
align-items: center;
border: 1px solid green;
}
.s2 {
display: flex;
justify-content: center;
align-items: center;
background-color: aqua;
border: 1px solid aqua;
}
.s3 {
background-color: beige;
}
.s1 .p1 {
position: fixed;
}
<html>
<body>
<div class="s1">
<p class="p1">TEST</p>
</div>
<div class="s2">
<p class="p2">STOP HERE</p>
</div>
<div class="s3">

</div>
</body>
</html>

关于javascript - 当滚动元素停止特定点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52603509/

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