Subversion Repositories My Stuff

Compare Revisions

Ignore whitespace Rev 16 → Rev 17

/trunk/JavaScripts/scrollable_gallery.js
0,0 → 1,25
$(document).ready(function(){
$('.subgallery').tooltip({
effect: 'slide',
tipClass : 'gallerytooltip',
opacity : 0.9
}).dynamic({ bottom: { direction: 'down', bounce: true } });
$('.subgallery img').reflect({height: 0.3, opacity: 0.7});
$('.subgallery').hover(function() {
$(this).find('img:first').reflect({height: 0.3, opacity: 1});
$(this).find('img:first').addClass('hovered');
}, function() {
$(this).find('img:first').reflect({height: 0.3, opacity: 0.7});
$(this).find('img:first').removeClass('hovered');
});
$('div.scrollable_gallery').scrollable({
mousewheel: true,
keyboard: true,
next: ".next",
prev: ".prev",
speed: 500
});
});
Property changes:
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property