我已经实现了n Parallax Scrolling效果,并且没有n框架或插件就可以实现灵活性。
我的代码非常简单我只需检查我的哪个部分,然后使背景变慢。但是为什么这么糟糕,因为如果我滚动到快速它看起来很糟糕并且绊倒......
图片已加载。
这是我页面底部的实例。
我的代码示例:
$( window ).scroll(function() {
var schonGescrollt = $(window).scrollTop();
//Wich Section
if(schonGescrollt>=0){
//The Background slow Scroll
var scrollLangsam = schonGescrollt*0.4;
//The White Boxes wich scroll normal
var scrollNormal = schonGescrollt*0.6;
$('#PARALLAX_bild1').css('margin-top', scrollLangsam);
//The Picture scroll a little bit with the White box until the Picture is visbible
if(schonGescrollt<=(heightProzent*125)){
$('#PARALLAX_infoBox1').css('margin-top', -scrollNormal);
if(scrollNormal<=(heightProzent*27)){
$('#PARALLAX_bild2').css('margin-top', -scrollNormal);
}
}
}
答案 0 :(得分:1)