对于我即将到来的项目,我使用 parallaxjs 效果。如您所知,它使用多个 css 背景层来改变滚动位置。我想要的是,我使用 div 层而不是 css 定义的背景。
function Move(){
var pos = $window.scrollTop(); //position of the scrollbar
//if the first section is in view...
if($firstBG.hasClass("inview")){
//call the newPos function and change the background position
$firstBG.css({'backgroundPosition': newPos(50, windowHeight, pos, 900, 0.3)});
}
有没有办法让一个 div 层(例如一个灯箱)而不是背景图像 css?感谢你的回答!