基于垂直滚动的水平图像移动

时间:2012-05-09 15:06:12

标签: jquery scroll

请查看本网站:

http://www.agencynet.com/

我不明白如何控制绿点的移动。

如何让绿点反应滚动?

$(function(){

     $('a[href*=#]').click(function() {

     if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
         && location.hostname == this.hostname) {

             var $target = $(this.hash);

             $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');

             if ($target.length) {

                 var targetOffset = $target.offset().top;

                 $('html,body').animate({scrollTop: targetOffset}, 1000);
                 $('#punto').animate({'marginLeft': targetOffset/2}, 1000);
                 return false;

            }

       }

   });

});

谢谢!

1 个答案:

答案 0 :(得分:0)

这应该让你开始

$(window).scroll(function() {
var scrolltop = $(window).scrollTop();
// animate your green dot according to the scrolltop value here
// e.g. $('.dot').stop().animate({left:(scrolltop/1000.0)*100+'px'});
});

一条忠告:每次滚动更新动画都会导致平滑滚动浏览器的性能变差。在这种情况下,最好只在滚动停止后或至少在一些最小超时

之后启动动画