Trying to modify the jquery script Supersized (http://buildinternet.com/project/supersized/ ) so that it will always show the thumbnail tray (i will get rid of the tray toggle arrow). I'm using the fade template demoed here: http://buildinternet.com/project/supersized/slideshow/3.2/fade.html
I believe this is the relevant bit of code , but i don't know jquery beyond being able to implement and sometimes modify scripts. Need to get this done tonight, so if you can help asap that would be awesome.
I believe this is the relevant bit of code , but i don't know jquery beyond being able to implement and sometimes modify scripts. Need to get this done tonight, so if you can help asap that would be awesome.
Code:
// Thumbnail Tray Toggle
$(vars.tray_button).toggle(function(){
$(vars.thumb_tray).stop().animate({bottom : 0, avoidTransforms : true}, 300 );
if ($(vars.tray_arrow).attr('src')) $(vars.tray_arrow).attr("src", vars.image_path + "button-tray-down.png");
return false;
}, function() {
$(vars.thumb_tray).stop().animate({bottom : -$(vars.thumb_tray).height(), avoidTransforms : true}, 300 );
if ($(vars.tray_arrow).attr('src')) $(vars.tray_arrow).attr("src", vars.image_path + "button-tray-up.png");
return false;
});
Last edited:
