Tag: scrolling gallery

scrolling gallery

$(document).ready(function(){ $('#pic_container').click(function(){ var numberOfPics=$(this).find('div > img').length; var next = Math.floor(Math.random()*numberOfPics); $(this) .scrollTo( '#pic_scroller>img:eq('+next+')',{duration:1000} ); }); }); /** * jQuery.ScrollTo * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com *…