49ff
jQuery Slider, jQuery Slideshow
Bildergalerie jQuery, HTML Diashow
Galeria de Imagenes con jQuery, Slide Imagenes Gratis
Diaporama jQuery & Galerie D'Image jQuery
Slideshow Immagini jQuery, Galleria jQuery
WOW 网络幻灯片:jQuery 效果的幻灯片
Slider jQuery Chocante, Slider de Imagens jQuery
WOW Slider: jQuery слайдер изображений, HTML5 слайдшоу, CSS3 слайдер
WOW Slider: jQuery Bild-Slider & Galleri
WOW Slider : jQuery画像のスライダー&ギャラリー
WOW Slider: jQuery Afbeelding Slider & Gallery
For troubleshooting, feature requests, and general help, contact Customer Support at
.
Make sure to include details on your browser, operating system, WOW Slider version, link to your page. In most cases you'll get a reply within 1 business day.
Please read the FAQs first to see if your question has already been answered.
Image via ajax in image scroller htmlQ: Is it possible to handle event of image change in wowslider? In my app i’d like to get additional info about image via ajax every time when currently visible image change.
A: Try to use "onStep" parameter. Open "script.js" file in any text editor (for example,
Notepad), find last line and add "onStep" parameter. For example:
jQuery('#wowslider-container1').wowSlider({
effect:"blast",
prev:"",
next:"",
duration: 70*100,
delay:20*100,
outWidth:960,
outHeight:360,
width:960,
height:360,
autoPlay:false,
stopOnHover:false,
loop:false,
bullets:true,
caption: true,
controls:true,
onStep:function(index){
alert(index)
} // raised after step complete
})
where index is number of current slide. onStep will be call-back before each step.