2009-08-31 85 views

回答

1

似乎像jQuery LocalScroll。从它们的pushup.js(为了清晰起见):

$('#whatwhyhow-questions').localScroll({ 
    target:'#whatwhyhow-answers' 
}); 

$("#whatwhyhow-questions a").click(function(event){ 
    event.preventDefault(); 
    $('#whatwhyhow-arrow').animate({top:$(this).attr("rel")}); 
}); 
0

他们使用命名建立在jQuery的顶部pushup.js定制js文件和那里你可以找到正在使用的

动画功能。

相关问题