DMXzone Supersized Support Product Page
  Answered 
 show default thumbnails
 Asked  31 Jan 2012  03:41:23 
  3 
      have  this question  
  31 Jan 2012  03:41:23 George Drake posted: 
 how can i have the bottom thumbnails show by default when using this extension?  Replies
 Replied 31 Jan 2012  07:30:28 
   31 Jan 2012  07:30:28 Teodor Kuduschiev replied: 
  Hello,
Unfortunately it is not possible.
  Unfortunately it is not possible.
 Replied 31 Jan 2012  15:33:47 
   31 Jan 2012  15:33:47 George Drake replied: 
  is there a place i can add this to a future feature request? 
   Replied 31 Jan 2012  15:43:17 
   31 Jan 2012  15:43:17 Teodor Kuduschiev replied: 
  www.dmxzone.com/support/19347/2604/ You can share an idea here
 
   Replied 21 Feb 2012  01:12:04 
   21 Feb 2012  01:12:04 tye tye replied: 
  Quote: Jorge Rebollo
Source: buildinternet.com/2011/07/supersized-3-2-fullscreen-jquery-slideshow/
In “supersized.shutter.js” file change:
(side note: if you're using the .min, change all '$' to 'a')
good luck.
(edit: added code tag)
  Source: buildinternet.com/2011/07/supersized-3-2-fullscreen-jquery-slideshow/
In “supersized.shutter.js” file change:
(side note: if you're using the .min, change all '$' to 'a')
$(vars.thumb_tray).stop().animate({bottom : 0, avoidTransforms : true}, 300 );
$(vars.tray_button).toggle(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;
}, 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;
});good luck.
(edit: added code tag)
 Replied 17 Mar 2012  03:27:19 
   17 Mar 2012  03:27:19 Trevor Courtney replied: 
  I would like to be able to show the thumbs by default 
   Replied 23 Jan 2014  06:07:50 
   23 Jan 2014  06:07:50 Nagoor Meeran replied: 
           e(vars.thumb_tray).css({
bottom: -e(vars.thumb_tray).height()
	
				
});
-------------------------------------------------------------------
Replace bottom:0
---------------------------------------------------
e(vars.thumb_tray).css({
 
bottom:0
				
});
  bottom: -e(vars.thumb_tray).height()
});
-------------------------------------------------------------------
Replace bottom:0
---------------------------------------------------
e(vars.thumb_tray).css({
bottom:0
});
