two galleryView on the same page problem!
Posted
by user334922
on Stack Overflow
See other posts from Stack Overflow
or by user334922
Published on 2010-05-10T13:19:02Z
Indexed on
2010/05/10
13:24 UTC
Read the original article
Hit count: 424
jquery-plugins
|image-gallery
I'm using two galleryView on the same page, but the navigation control get crazy, and navigate the worng gallery sometimes.i think is because the gallery create the frame with the same name. how can i fix?
$('#photos').galleryView({
panel_width: 650,
panel_height: 400,
frame_width: 60,
frame_height: 60,
transition_speed: 1200,
transition_interval:0,
border: 'none',
nav_theme: 'dark'
});
$('#videos').galleryView({
panel_width: 650,
panel_height: 400,
frame_width: 60,
frame_height: 60,
transition_speed: 1200,
transition_interval:0,
border: 'none',
nav_theme: 'dark'
});
© Stack Overflow or respective owner