If you go to their website here: www.modxcms.com, you will see the WHAT, WHY, HOW slideshow. Can anybody tell me what they are using to do that?
A:
They are using a customized js file named pushup.js built on top of jQuery and there you can find the
animate function being used.
rahul
2009-08-31 06:48:52
+1
A:
Seems like jQuery LocalScroll. From their pushup.js
(indented for clarity):
$('#whatwhyhow-questions').localScroll({
target:'#whatwhyhow-answers'
});
$("#whatwhyhow-questions a").click(function(event){
event.preventDefault();
$('#whatwhyhow-arrow').animate({top:$(this).attr("rel")});
});
August Lilleaas
2009-08-31 06:59:19