I am also facing the same problem. However, I found the option settings.automatic = false; to prevent the slide from sliding automatically. Then I declare the variable stop : false in the default variable and check the init function :
var init = function() { if ( settings.stop ) { settings.automatic = false; } ... }
So, in my calling function, I just called:
$('#banner-slide').bjqs({ animtype : 'slide', height : 357, width : 631, responsive : false, randomstart : false, stop : true });
source share