通过滚动触发div动画

时间:2012-07-23 19:21:03

标签: jquery html scroll jquery-animate

我在横向滚动网站上工作。该网站有一个大的背景图像(5000像素宽)。现在,我有div目前显示的内容:隐藏。我知道如何淡入它们,但我需要它们在向右滚动时动态进入视图,我想用百分比触发这些div。

示例:用户开始向右滚动,一旦它们达到20%宽度,第一个div进入视图(从右侧)。然后用户继续滚动,直到它们达到40%宽度,第一个div动画离开(向左),然后下一个div进入视图(从右侧)。

任何想法如何用jQuery完成这个?

这里有一些代码......目前我有链接触发一些基本的动画。但没有任何手动滚动。哦,我正在使用这个名为ScrollTo的优秀插件来获取百分比。

HTML                      

<div id="eat" class="sections">
 <div class="content">
 </div>
</div>

<div id="see" class="sections">
 <div class="content">
 </div>
</div>

<div id="meet" class="sections">
 <div class="content">
 </div>
</div>

<div id="find" class="sections">
 <div class="content">
 </div>
</div>

<div id="background">
 <img src="images/test.jpg" alt="" id="bg" />
</div>

CSS

.sections {position:absolute; right: 0; width:700px; height: 100%; min-height: 650px; z-index: 10; background-color: rgb(0,0,0);}
#drink, #eat, #see, #meet, #find {margin: 0px; padding: 0px;}
.content {margin: 20px; padding: 0px; outline: 1px solid red;}
h1 {color:#FFF; margin: 10em auto 0px auto;}
#background {height:103%; min-height: 670px; overflow-x: scroll; overflow-y: hidden; z-index: 9;}
#background img#bg {height: 100%; min-height: 650px; margin: 0px; padding: 0px;}

JS

$("document").ready(function() {

$('#link1').click(function(){
    $('#background').scrollTo('20%', 1500);
        var div = $('#drink');
        div.animate({right: $(window).width()/2 - div.outerWidth()/2}, {duration: 1500, queue: false}, function() {
        });
        $('#logo, #eat, #see, #meet, #find').fadeOut(500);          
        $('#drink').fadeIn(500);
});

$('#link2').click(function(){
    $('#background').scrollTo('40%', 1500);
        var div = $('#eat');
        div.animate({right: $(window).width()/2 - div.outerWidth()/2}, {duration: 1500, queue: false}, function() {
        });
        $('#logo, #drink, #see, #meet, #find').fadeOut(500);
        $('#eat').fadeIn(500);
});

$('#link3').click(function(){
    $('#background').scrollTo('60%', 1500);
        var div = $('#see');
        div.animate({right: $(window).width()/2 - div.outerWidth()/2}, {duration: 1500, queue: false}, function() {
        });
        $('#logo, #drink, #eat, #meet, #find').fadeOut(500);                
        $('#see').fadeIn(500);
});

$('#link4').click(function(){
    $('#background').scrollTo('80%', 1500);
        var div = $('#meet');
        div.animate({right: $(window).width()/2 - div.outerWidth()/2}, {duration: 1500, queue: false}, function() {
        });
        $('#logo, #drink, #eat, #see, #find').fadeOut(500);
        $('#meet').fadeIn(500);
});

$('#link5').click(function(){
    $('#background').scrollTo('100%', 1500);
        var div = $('#find');
        div.animate({right: $(window).width()/2 - div.outerWidth()/2}, {duration: 1500, queue: false}, function() {
        });
        $('#logo, #drink, #eat, #see, #meet').fadeOut(500);
        $('#find').fadeIn(500);
});

});

2 个答案:

答案 0 :(得分:2)

您可以收听滚动事件,然后根据scrollLeft()进行计算:

$(document).on('scroll', function() {
  //do the math
  console.log( $(this).scrollLeft() );
});

答案 1 :(得分:0)

您可以在jQuery中监视scroll事件。这是另一个答案,让您了解如何跟踪左右滚动。 https://stackoverflow.com/a/4308435/53007