jquery - SlidesJS Pause Workaround? -


i downloaded , implemented new plugin named slidesjs. slides ran in auto-play mode. however, seemed notice problem(not sure if problem or feature). whenever clicked pagination item, auto-slide effect pauses. not showing play button on screen, , hence problem. want auto-slide effect continue after user clicks on pagination items.

is there solution ?

just add following complete callback in options (using slidesjs 3.0):

$('#slides').slidesjs({     callback: {         complete: function(number) {             var plugininstance = $('#slides').data('plugin_slidesjs');              settimeout(function() {                 plugininstance.play(true);             }, plugininstance.options.play.interval);         }     } }); 

Comments

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -