我已经向我的博客添加了一个新模板,它有一个带有一些与博客相关的图像的滑块,问题是“滑块仅在我单击下一个按钮或上一个按钮时运行”,我需要自动滑动它有人帮助我所以,我会感谢他们..
代码是:
<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>