Javascript 如果只有一个,如何停止滑动<;李>;使用anythingSlider(jQuery插件)?

Javascript 如果只有一个,如何停止滑动<;李>;使用anythingSlider(jQuery插件)?,javascript,jquery,jquery-plugins,Javascript,Jquery,Jquery Plugins,我目前正在使用这个插件,除了只有一个外,它工作得非常好 是从数据库生成的,因此有时只有一个 然而,anythingSlider插件仍然尝试在中滑动,它通过滑回第一张幻灯片来工作。虽然这看起来不太好 如果只有一个,有人知道阻止它滑动的方法吗 --编辑-- 嗨 还有谁能帮忙吗?我尝试过Greg的解决方案,我也尝试过: if (banners<1) { .anythingSlider({ startStopped: true, buildNavigatio

我目前正在使用这个插件,除了只有一个
  • 外,它工作得非常好

  • 是从数据库生成的,因此有时只有一个

    然而,anythingSlider插件仍然尝试在
  • 中滑动,它通过滑回第一张幻灯片来工作。虽然这看起来不太好

    如果只有一个
  • ,有人知道阻止它滑动的方法吗

    --编辑--

    还有谁能帮忙吗?我尝试过Greg的解决方案,我也尝试过:

    if (banners<1) {
        .anythingSlider({
            startStopped: true,
            buildNavigation: false
            });
        }
    
    if(banner=0){x+='&tb='+(i+1);}else{x+='?tb='+(i+1);}
    返回x
    }
    //告诉javascript显示所有可用变量
    用于(横幅中的变量i){
    banner.alt=bannerAlt[i];
    link.href=跟踪(bannerLink[i]);
    banner.src=横幅[i];
    文件。写(“”);
    }
    //移除原始横幅
    $('a#tehLink').parent().remove();
    //隐藏横幅开始
    $('a.slide-link').hide();
    /*
    AnythingSliderV1.1
    作者:Chris Coyier:http://css-tricks.com
    Doug Neiner进行了重大改进:http://pixelgraphics.us/
    根据Remy Sharp的工作:http://jqueryfordesigners.com/
    要使用navigationFormatter函数,必须具有
    接受两个参数,并返回一个HTML文本字符串。
    索引=整数索引(基于1);
    panel=jQuery此选项卡引用的项目
    @return=必须返回HTML/文本字符串
    navigationFormatter:函数(索引、面板){
    return index+“Panel”;//每个选项卡都有文本“X Panel”,其中X=index
    }
    */
    (函数($){
    $.anythingSlider=函数(el,选项){
    //为避免范围问题,请使用“base”而不是“this”
    //从内部事件和函数引用此类。
    var base=此;
    //访问元素的jQuery和DOM版本
    基数.$el=$(el);
    base.el=el;
    //设置一些默认值
    base.currentPage=1;
    base.timer=null;
    base.playing=false;
    //向DOM对象添加反向引用
    基准。$el.data(“任意滑块”,基准);
    base.init=函数(){
    base.options=$.extend({},$.anythingSlider.defaults,options);
    //缓存现有DOM元素以备将来使用
    base.$wrapper=base.$el.find('>div').css('overflow','hidden');
    base.$slider=base.$wrapper.find('>ul');
    base.$items=base.$slider.find('>li');
    base.$single=base.$items.filter(“:first”);
    //如果需要,构建导航
    if(base.options.buildNavigation)base.buildNavigation();
    //了解详情
    base.singleWidth=base.$single.outerWidth();
    base.pages=base.$items.length;
    //顶部和尾部项目数为“可见”的列表,顶部为最后一部分,尾部为第一部分
    //这支持“无限”滚动
    base.$items.filter(':first').before(base.$items.filter(':last').clone().addClass('cloned'));
    base.$items.filter(':last').after(base.$items.filter(':first').clone().addClass('cloned'));
    //我们刚刚添加了两项,是时候重新缓存列表了
    base.$items=base.$slider.find('>li');//重新选择
    //设置前进/后退导航
    base.buildNextBackButtons();
    //如果包含自动播放功能,则初始化设置
    if(base.options.autoPlay){
    base.playing=!base.options.startStopped;//如果startStopped为true,则将播放变量设置为false
    base.buildAutoPlay();
    };
    //如果暂停悬停,则添加悬停效果
    if(base.options.pauseonhaver){
    基本$el.hover(函数(){
    base.clearTimer();
    },函数(){
    base.startStop(base.playing);
    });
    }
    //如果无法使用散列来触发插件,请转到第1页
    if((base.options.hashTags==true&&!base.gotoHash())| | base.options.hashTags==false){
    base.setCurrentPage(1);
    };
    };
    base.gotoPage=函数(第页,自动播放){
    //当自动播放未通过时,我们停止计时器
    如果(autoplay!==true)autoplay=false;
    如果(!autoplay)base.startStop(false);
    if(typeof(page)=“未定义”| | page==null){
    page=1;
    base.setCurrentPage(1);
    };
    //只需检查边界
    如果(page>base.pages+1)page=base.pages;
    如果(页面<0)页面=1;
    var dir=page<script type="text/javascript">
    
    var banners=[];
    
    banners[0]="http://image.ebuyer.com/customer/promos/UK/AcerAspire5536.jpg";
    //banners[1]="http://image.ebuyer.com/customer/promos/2150/banner.jpg";
    //banners[2]="http://image.ebuyer.com/customer/promos/UK/257653_FerrariOne_tb20091026.jpg";
    //banners[3]="http://image.ebuyer.com/customer/promos/UK/247038_compaq_images/247038_compaq_incentive_banner20090814.jpg"; //added 03/09/2009
    //banners[4]="http://image.ebuyer.com/customer/promos/UK/247858-samsung-tv-comp-tb20090817.jpg"; //added 19/08/2009
    
    var bannerLink=[];
    
    bannerLink[0]="http://www.ebuyer.com/product/173536";
    //bannerLink[1]="/special/2150";
    //bannerLink[2]="/product/172295";
    //bannerLink[3]="/compaq-cash-incentive";
    //bannerLink[4]="/special/2101";
    
    var bannerAlt=[];
    
    bannerAlt[0]="Acer Aspire 5536";
    //bannerAlt[1]="The X5 range for Asus";
    //bannerAlt[2]="Acer Ferrari One Laptop";
    //bannerAlt[3]="Buy these three products together and claim £75 cashback";
    //bannerAlt[4]="Win a Samsung 46in LCV TV";
    
    </script>
    
    // function to import css and javascript from external locations
    function loadjscssfile(filename, filetype){
     if (filetype=="js"){ //if filename is a external JavaScript file
      var fileref=document.createElement('script')
      fileref.setAttribute("type","text/javascript")
      fileref.setAttribute("src", filename)
     }
     else if (filetype=="css"){ //if filename is an external CSS file
      var fileref=document.createElement("link")
      fileref.setAttribute("rel", "stylesheet")
      fileref.setAttribute("type", "text/css")
      fileref.setAttribute("href", filename)
     }
     if (typeof fileref!="undefined")
      document.getElementsByTagName("head")[0].appendChild(fileref)
    }
    
    // importing css and javascript
    loadjscssfile("http://static.ebuyer.com/css/slider.css", "css") ////dynamically load and add this .css file
    
    // setting the variables
    var banner = document.getElementById('tehBanner');
    var link = document.getElementById('tehLink');
    
    // this function creates the tracking tags
    function tracking (x) {
        if (x.indexOf("?")>=0){x+='&tb='+(i+1);}else{x+='?tb='+(i+1);}
        return x 
        }
    
    // telling the javascript to display all available variables    
    for (var i in banners) {
        banner.alt = bannerAlt[i];  
        link.href = tracking(bannerLink[i]);
        banner.src = banners[i];
        document.write('<a href="' + bannerLink[i] + '" class="slide-link">' + '<img src="' + banners[i] + '" id="slide-image" alt="' + bannerAlt[i] + '" /></a>');
        }
    
    // remove the original banner
    $ ('a#tehLink').parent().remove();
    
    // hide banners to begin with
    $('a.slide-link').hide();
    
    /*
        anythingSlider v1.1
    
        By Chris Coyier: http://css-tricks.com
        with major improvements by Doug Neiner: http://pixelgraphics.us/
        based on work by Remy Sharp: http://jqueryfordesigners.com/
    
    
        To use the navigationFormatter function, you must have a function that
        accepts two paramaters, and returns a string of HTML text.
    
        index = integer index (1 based);
        panel = jQuery wrapped LI item this tab references
        @return = Must return a string of HTML/Text
    
        navigationFormatter: function(index, panel){
            return index + " Panel"; // This would have each tab with the text 'X Panel' where X = index
        }
    */
    
    (function($){
    
        $.anythingSlider = function(el, options){
            // To avoid scope issues, use 'base' instead of 'this'
            // to reference this class from internal events and functions.
            var base = this;
    
            // Access to jQuery and DOM versions of element
            base.$el = $(el);
            base.el = el; 
    
            // Set up a few defaults
            base.currentPage = 1;
            base.timer = null;
            base.playing = false;
    
            // Add a reverse reference to the DOM object
            base.$el.data("AnythingSlider", base);
    
            base.init = function(){
                base.options = $.extend({},$.anythingSlider.defaults, options);
    
                // Cache existing DOM elements for later 
                base.$wrapper = base.$el.find('> div').css('overflow', 'hidden');
                base.$slider  = base.$wrapper.find('> ul');
                base.$items   = base.$slider.find('> li');
                base.$single  = base.$items.filter(':first');
    
                // Build the navigation if needed
                if(base.options.buildNavigation) base.buildNavigation();
    
                // Get the details
                base.singleWidth = base.$single.outerWidth();
                base.pages = base.$items.length;
    
                // Top and tail the list with 'visible' number of items, top has the last section, and tail has the first
                // This supports the "infinite" scrolling
                base.$items.filter(':first').before(base.$items.filter(':last').clone().addClass('cloned'));
                base.$items.filter(':last' ).after(base.$items.filter(':first').clone().addClass('cloned'));
    
                // We just added two items, time to re-cache the list
                base.$items = base.$slider.find('> li'); // reselect
    
                // Setup our forward/backward navigation
                base.buildNextBackButtons();
    
                // If autoPlay functionality is included, then initialize the settings
                if(base.options.autoPlay) {
                    base.playing = !base.options.startStopped; // Sets the playing variable to false if startStopped is true
                    base.buildAutoPlay();
                };
    
                // If pauseOnHover then add hover effects
                if(base.options.pauseOnHover) {
                    base.$el.hover(function(){
                        base.clearTimer();
                    }, function(){
                        base.startStop(base.playing);
                    });
                }
    
                // If a hash can not be used to trigger the plugin, then go to page 1
                if((base.options.hashTags == true && !base.gotoHash()) || base.options.hashTags == false){
                    base.setCurrentPage(1);
                };
            };
    
            base.gotoPage = function(page, autoplay){
                // When autoplay isn't passed, we stop the timer
                if(autoplay !== true) autoplay = false;
                if(!autoplay) base.startStop(false);
    
                if(typeof(page) == "undefined" || page == null) {
                    page = 1;
                    base.setCurrentPage(1);
                };
    
                // Just check for bounds
                if(page > base.pages + 1) page = base.pages;
                if(page < 0 ) page = 1;
    
                var dir = page < base.currentPage ? -1 : 1,
                    n = Math.abs(base.currentPage - page),
                    left = base.singleWidth * dir * n;
    
                base.$wrapper.filter(':not(:animated)').animate({
                    scrollLeft : '+=' + left
                }, base.options.animationTime, base.options.easing, function () {
                    if (page == 0) {
                        base.$wrapper.scrollLeft(base.singleWidth * base.pages);
                        page = base.pages;
                    } else if (page > base.pages) {
                        base.$wrapper.scrollLeft(base.singleWidth);
                        // reset back to start position
                        page = 1;
                    };
                    base.setCurrentPage(page);
    
                });
            };
    
            base.setCurrentPage = function(page, move){
                // Set visual
                if(base.options.buildNavigation){
                    base.$nav.find('.cur').removeClass('cur');
                    $(base.$navLinks[page - 1]).addClass('cur');    
                };
    
                // Only change left if move does not equal false
                if(move !== false) base.$wrapper.scrollLeft(base.singleWidth * page);
    
                // Update local variable
                base.currentPage = page;
            };
    
            base.goForward = function(autoplay){
                if(autoplay !== true) autoplay = false;
                base.gotoPage(base.currentPage + 1, autoplay);
            };
    
            base.goBack = function(){
                base.gotoPage(base.currentPage - 1);
            };
    
            // This method tries to find a hash that matches panel-X
            // If found, it tries to find a matching item
            // If that is found as well, then that item starts visible
            base.gotoHash = function(){
                if(/^#?panel-\d+$/.test(window.location.hash)){
                    var index = parseInt(window.location.hash.substr(7));
                    var $item = base.$items.filter(':eq(' + index + ')');
                    if($item.length != 0){
                        base.setCurrentPage(index);
                        return true;
                    };
                };
                return false; // A item wasn't found;
            };
    
            // Creates the numbered navigation links
            base.buildNavigation = function(){
                base.$nav = $("<div id='thumbNav'></div>").appendTo(base.$el);
                base.$items.each(function(i,el){
                    var index = i + 1;
                    var $a = $("<a href='#'></a>");
    
                    // If a formatter function is present, use it
                    if( typeof(base.options.navigationFormatter) == "function"){
                        $a.html(base.options.navigationFormatter(index, $(this)));
                    } else {
                        $a.text(index);
                    }
                    $a.click(function(e){
                        base.gotoPage(index);
    
                        if (base.options.hashTags)
                            base.setHash('panel-' + index);
    
                        e.preventDefault();
                    });
                    base.$nav.append($a);
                });
                base.$navLinks = base.$nav.find('> a');
            };
    
    
            // Creates the Forward/Backward buttons
            base.buildNextBackButtons = function(){
                var $forward = $('<a class="arrow forward">&gt;</a>'),
                    $back    = $('<a class="arrow back">&lt;</a>');
    
                // Bind to the forward and back buttons
                $back.click(function(e){
                    base.goBack();
                    e.preventDefault();
                });
    
                $forward.click(function(e){
                    base.goForward();
                    e.preventDefault();
                });
    
                // Append elements to page
                base.$wrapper.after($back).after($forward);
            };
    
            // Creates the Start/Stop button
            base.buildAutoPlay = function(){
    
                base.$startStop = $("<a href='#' id='start-stop'></a>").html(base.playing ? base.options.stopText :  base.options.startText);
                base.$el.append(base.$startStop);            
                base.$startStop.click(function(e){
                    base.startStop(!base.playing);
                    e.preventDefault();
                });
    
                // Use the same setting, but trigger the start;
                base.startStop(base.playing);
            };
    
            // Handles stopping and playing the slideshow
            // Pass startStop(false) to stop and startStop(true) to play
            base.startStop = function(playing){
                if(playing !== true) playing = false; // Default if not supplied is false
    
                // Update variable
                base.playing = playing;
    
                // Toggle playing and text
                base.$startStop.toggleClass("playing", playing).html( playing ? base.options.stopText : base.options.startText );
    
                if(playing){
                    base.clearTimer(); // Just in case this was triggered twice in a row
                    base.timer = window.setInterval(function(){
                        base.goForward(true);
                    }, base.options.delay);
                } else {
                    base.clearTimer();
                };
            };
    
            base.clearTimer = function(){
                // Clear the timer only if it is set
                if(base.timer) window.clearInterval(base.timer);
            };
    
            // Taken from AJAXY jquery.history Plugin
            base.setHash = function ( hash ) {
                // Write hash
                if ( typeof window.location.hash !== 'undefined' ) {
                    if ( window.location.hash !== hash ) {
                        window.location.hash = hash;
                    };
                } else if ( location.hash !== hash ) {
                    location.hash = hash;
                };
    
                // Done
                return hash;
            };
            // <-- End AJAXY code
    
    
            // Trigger the initialization
            base.init();
        };
    
    
        $.anythingSlider.defaults = {
            easing: "swing",                // Anything other than "linear" or "swing" requires the easing plugin
            autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not
            startStopped: false,            // If autoPlay is on, this can force it to start stopped
            delay: 3000,                    // How long between slide transitions in AutoPlay mode
            animationTime: 600,             // How long the slide transition takes
            hashTags: true,                 // Should links change the hashtag in the URL?
            buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
            pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
            startText: "Start",             // Start text
            stopText: "Stop",               // Stop text
            navigationFormatter: null       // Details at the top of the file on this use (advanced use)
        };
    
    
        $.fn.anythingSlider = function(options){
            if(typeof(options) == "object"){
                return this.each(function(i){           
                    (new $.anythingSlider(this, options));
    
                    // This plugin supports multiple instances, but only one can support hash-tag support
                    // This disables hash-tags on all items but the first one
                    options.hashTags = false;
                }); 
            } else if (typeof(options) == "number") {
    
                return this.each(function(i){
                    var anySlide = $(this).data('AnythingSlider');
                    if(anySlide){
                        anySlide.gotoPage(options);
                    }
                });
            }
        };
    
    
    })(jQuery);
    
    // this function wraps the elements in the neccessary tags to work with anything Slider
    $ (document).ready(function() {
        $('a.slide-link')
            .wrap('<li class="slide-list-item"></li>');
        $('li.slide-list-item')
            .wrapAll('<ul id="slide-list"></ul>');
        $('ul#slide-list')
            .wrapAll('<div class="wrapper"></div>');
        $('div.wrapper')
            .wrapAll('<div class="anythingSlider internalSlider"></div>');
        $('.anythingSlider')
            .anythingSlider({
                easing: "swing",                // Anything other than "linear" or "swing" requires the easing plugin
                autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not
                startStopped: false,            // If autoPlay is on, this can force it to start stopped
                delay: 7000,                    // How long between slide transitions in AutoPlay mode
                animationTime: 600,             // How long the slide transition takes
                hashTags: false,                 // Should links change the hashtag in the URL?
                buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
                pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
                startText: "Start",             // Start text
                stopText: "Stop",               // Stop text
                navigationFormatter: null       // Details at the top of the file on this use (advanced use)
            });
        $('a.slide-link').show();
        });
    
    $('.anythingSlider').anythingSlider({...});
    
    $('.anythingSlider:has(li:nth-child(2)').anythingSlider({...});
    
    if($([ULELEMENT]).children('li').length > 1){
    
    //Your code
    
    }
    
    jQuery("#sliderDiv:has(>li:eq(1))").anythingSlider({...})
    
    <div id="sliderDiv">
      <li>Offer 1</li>
      <li>Offer 2</li>
    </div>
    
    // this function wraps the elements in the neccessary tags to work with anything Slider
    $ (document).ready(function() {
        $('a.slide-link')
            .wrap('<li class="slide-list-item"></li>');
        $('li.slide-list-item')
            .wrapAll('<ul id="slide-list"></ul>');
        $('ul#slide-list')
            .wrapAll('<div class="wrapper"></div>');
        $('div.wrapper')
            .wrapAll('<div class="anythingSlider internalSlider"></div>');
    
        if(banners.length > 1){
            autoplayval= true;
        } else {
            autoplayval= false;
        }
        $('.anythingSlider')
            .anythingSlider({
                easing: "swing",                // Anything other than "linear" or "swing" requires the easing plugin
                autoPlay: autoplayval,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not
                startStopped: false,            // If autoPlay is on, this can force it to start stopped
                delay: 7000,                    // How long between slide transitions in AutoPlay mode
                animationTime: 600,             // How long the slide transition takes
                hashTags: false,                 // Should links change the hashtag in the URL?
                buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
                pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
                startText: "Start",             // Start text
                stopText: "Stop",               // Stop text
                navigationFormatter: null       // Details at the top of the file on this use (advanced use)
            });
        $('a.slide-link').show();
    });
    
    base.setCurrentPage(startPanel, false); // added to trigger events for FX code