Question

How to navigate thru GalleryView filmstrip without changing a picture in a panel? I can not find a property for this.

GalleryView is pretty popular so I hope, someone will know how to do it simple. It is always possibility to change the gallery code, but I hope there is better solution. Some flag maybe?

Currently I have the following settings:

$('#gallery').galleryView({
panel_width: 600,
panel_height: 300,
frame_width: 120,
frame_height: 75,
transition_interval: 0,
background_color: '#222',
border: 'none',
easing: 'easeInOutBack',
pause_on_hover: true,
nav_theme: 'custom',
overlay_height: 52,
filmstrip_position: 'top',
overlay_position: 'top',
nav_theme: 'dark',
frame_scale: 'crop',
frame_opacity: 0.7,
start_frame: 2,
fade_panels: false
});
Was it helpful?

Solution

Set transition_interval: -1.

0 as you have specified indicates no interval so as soon as transition has ended the next one starts.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top