我已经为我的博客添加了一个新模板,它有一个滑块,其中包含一些与博客相关的图像,问题是“当我点击下一个按钮或上一个按钮时滑块才会运行”,我需要自动滑动它有人帮助我,我会感激他们..
代码是:
<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>
答案 0 :(得分:0)
你的代码很难破译,但尝试这样的事情:
myInt = setInterval( $('.next').click(), 5000 );
<强>来源(S)强>