ブロガーに新しいテンプレートを追加しましたが、ブログに関連する画像を含むスライダーがあり、「次のボタンまたは前のボタンをクリックしたときにのみスライダーが実行される」という問題があり、自動的にスライドする必要があります誰かが助けてくれますだから、私は彼らに感謝したいと思います..
コードは次のとおりです。
<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>