문제

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
});
도움이 되었습니까?

해결책

Set transition_interval: -1.

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top