0
我已經爲我的博客添加了一個新的模板,它有一個與博客相關的圖像的滑塊,問題是「滑塊只在單擊下一個按鈕或上一個按鈕時才運行」,我需要自動將其滑動幫我的話,我會感謝他們..如何將自動滑塊功能添加到我的jQuery滑塊?
的代碼是:
<script type='text/javascript'>
jQuery(function() {
var Page = (function() {
var $navArrows = jQuery('#nav-arrows').hide(),
//$shadow = jQuery('#shadow').hide(),
slicebox = jQuery('#sb-slider').slicebox({
onReady : function() {
$navArrows.show();
//$shadow.show();
},
orientation : 'r',
cuboidsRandom : true,
easing : 'ease'
}),
init = function() {
initEvents();
},
initEvents = function() {
// add navigation events
$navArrows.children(':first').on('click', function() {
slicebox.next();
return false;
});
$navArrows.children(':last').on('click', function() {
slicebox.previous();
return false;
});
};
return { init : init };
})();
Page.init();
});
</script>