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 *…
thumbnail scroller
$(document).ready(function(){ $('#photos_inner').toggle(function(){ var scrollAmount = $(this).width()-$(this).parent().width(); $(this).animate({'left':'-='+scrollAmount},'slow'); },function(){ $(this).animate({'left':'0'},'slow'); }); }); #photos { overflow: hidden; width: 600px; } #photos_inner { height: 100px; width: 1500px; overflow: hidden; position: relative; } #photos_inner…
cycle สามารถทำ shuffle,zoom, fade,turnDown,curtainX,scrollRight
ไม่ support IE 6 $(document).ready(function(){ $('#photos').cycle({ fx:'shuffle' //เปลี่ยนได้ shuffle,zoom, fade,turnDown,curtainX,scrollRight }); }); /* * jQuery Cycle Plugin (with Transition Definitions) * Examples and documentation at: http://jquery.malsup.com/cycle/ * Copyright (c) 2007-2009…
Inner fade
$(document).ready(function(){ $('#news ul').innerfade({ animationtype:'slide', speed:750, timeout:3000, type:'random' }); }); /* ========================================================= // jquery.innerfade.js // Datum: 2008-02-14 // Firma: Medienfreunde Hofmann & Baldes GbR // Author: Torsten Baldes // Mail: t.baldes@medienfreunde.com…
