gpt4 book ai didi

jquery - 根据滚动改变位置

转载 作者:行者123 更新时间:2023-11-28 05:27:09 26 4
gpt4 key购买 nike

我想根据我的滚动改变位置。因为图片能说一千个字,这就是我想要的:

enter image description here

这是我的代码: https://jsfiddle.net/njz87Lth/1/

HTML :

<h1> MY TEXT. orem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </h1>
<div class="one"> </div>
<div class="two"> </div>

样式:

body {
text-align:center;
}

h1 {
left: 0;
line-height:2;
right:0;
width:600px;
margin-left: auto;
margin-right: auto;
position:fixed;
}

.one, .two {
width:600px;
position: absolute;
left: 0;
right:0;
margin-left: auto;
margin-right: auto;
}

.one {
top:100px;
height:300px;
background:grey;
}

.two {
height:800px;
background:pink;
margin-top:30px;
top:400px;
}

最佳答案

使用 jQuery 试试这个。

$(window).scroll(function () { 
$(".one").offset({ left: left, top: top});

});

根据您的需要给 offset 值。

关于jquery - 根据滚动改变位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38721536/

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