gpt4 book ai didi

javascript - 滚动时向上或向下移动 Box/Div

转载 作者:行者123 更新时间:2023-11-30 18:46:01 25 4
gpt4 key购买 nike

当我向上或向下滚动时,我希望框/div 也向上或向下移动。

例如:

查看类别框

最佳答案

在你的CSS中写#我的盒子{
位置:固定;
}

它可能会将它从中心移开,所以如果它是一个固定宽度和高度的盒子,你将不得不做一些数学运算

   #my-box-fixed { 
position: fixed;
width:200px;
height: 150px;
top: 50%;
left: 50%;
margin-left: -100px; // half of the width
margin-top: -75px; // half of the height
}

关于javascript - 滚动时向上或向下移动 Box/Div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5463619/

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