0

请检查这个网站:

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;

            }

       }

   });

});

谢谢!

4

1 回答 1

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'});
});

一句忠告:每次滚动更新时都制作动画可能会导致平滑滚动浏览器的性能下降。在这种情况下,最好仅在滚动停止或至少有一些最小超时后才开始动画

于 2012-05-09T15:12:51.073 回答