0

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

代码是:

<script type='text/javascript'>
            jQuery(function() {
              var Page = (function() {
                var $navArrows = jQuery( &#39;#nav-arrows&#39; ).hide(),
                                        //$shadow = jQuery( &#39;#shadow&#39; ).hide(),
                                        slicebox = jQuery( &#39;#sb-slider&#39; ).slicebox( {
                                        onReady : function() {
                  $navArrows.show();
                  //$shadow.show();
                },
                  orientation : &#39;r&#39;,
                  cuboidsRandom : true,
                    easing : &#39;ease&#39;
              } ),
                  init = function() {
                    initEvents();
                  },
                  initEvents = function() {
                    // add navigation events
                    $navArrows.children( &#39;:first&#39; ).on( &#39;click&#39;, function() {
                                        slicebox.next();
                    return false;
                  } );
              $navArrows.children( &#39;:last&#39; ).on( &#39;click&#39;, function() {
                                  slicebox.previous();
              return false;
            } );
            };
            return { init : init };
            })();
            Page.init();
            });
          </script>
4

1 回答 1

0

您的代码很难破译,但请尝试以下操作:

myInt = setInterval( $('.next').click(), 5000 );

来源

MDN - setInterval
jQuery API - .click()

于 2013-05-08T11:16:06.710 回答