2011-11-03 74 views
0

所以我有我的腳本運行,(你可以使用示例鏈接/圖像來測試) 但我有一個問題。在計算了我的圖像的長度之後,似乎 我的「過渡時期」在滑塊開始回來/重複本身之前爲 約爲圖像長度的三倍。我們可以使用樣本 網址進行測試。Jquery滑塊錯誤

<a class='wrapper' href='http://www.universallifechurchministers.org/images/big_image/ConanObrien.jpg' title="Conan O'Brien: TV host, comedian, writer, producer and performer."><img class='logo' alt="TV host, comedian, writer, producer and performer." id='conanobrien' src='http://www.universallifechurchministers.org/images/conan-obrien-sm.jpg' /><div class='long'>[.....]</div></a> 
<a class='wrapper' href='http://www.universallifechurchministers.org/images/big_image/RobDyrdek.jpg' title="Rob Dyrdek: Skateboarding Entrepreneur, Fantasy Factory on MTV."><img class='logo' alt="Skateboarding Entrepreneur, Fantasy Factory on MTV." id='robdyrdek' src='http://www.universallifechurchministers.org/images/rob-drydek-sm.jpg' /><div class='long'>[.....]</div></a> 
<a class='wrapper' href='http://www.universallifechurchministers.org/images/big_image/Glann-Beck.jpg' title="Glenn Beck: Talk Radio Host"><img class='logo' alt="Talk Radio Host" id='glennbeck' src='http://www.universallifechurchministers.org/images/image1.jpg' /><div class='long'>[.....]</div></a> 
<a class='wrapper' href='http://www.universallifechurchministers.org/images/big_image/Mel-Blanc.jpg' title="Mel Blanc: Voice Actor"><img class='logo' alt="Voice Actor" id='melblanc' src='http://www.universallifechurchministers.org/images/image2.jpg' /><div class='long'>[.....]</div></a> 

left:-632.914px看起來我的滑塊在它再次開始滑動之前停下來。 我希望在最後一張圖像 結束後立即重新開始,但無法弄清楚是什麼阻止了它的實現?

[You can see it working here]和這裏的全碼源

<!DOCTYPE html> 
<html> 
    <head> 
    <style> 

     /* js-disabled class - set image sizes so they all fit in the viewer */ 
     .js-disabled img { width:100px; height:100px; display:block; float:left; margin:30px 0 0; } 
     .wrapper {padding: 0 5px;} 
     .long { display:none; } 

     #outerContainer { width:542px; height:202px; margin:auto; position:relative; margin:220px auto; } 
     #imageScroller { width:675px; height:202px; position:relative; background: url(filmstrip_right.png) no-repeat; } 
      #viewer { 
       background-color: #000000; 
       height: 72px; 
       margin: auto; 
       overflow: hidden; 
       position: relative; 
       right: 10px; 
       top: 51px; 
       width: 540px; 
      } 
     #imageScroller a:active, #imageScroller a:visited { color:#000000; } 
     #imageScroller a img { border:0; } 
      #controls { 
       background: url("images/controlsBG.png") no-repeat scroll 0 0 transparent; 
       height: 47px; 
       left: 11px; 
       position: absolute; 
       top: -7px; 
       width: 534px; 
       z-index: 10; 
      } 

      #cover { 
       background: url("images/cover.png") no-repeat scroll 0 0 transparent; 
       height: 71px; 
       left: 57px; 
       position: absolute; 
       top: 51px; 
       width: 38px; 
       z-index: 999; 
      } 
     #controls a { width:37px; height:35px; position:absolute; top:3px; } 
     #controls a:active, #controls a:visited { color:#0d0d0d; } 
     #title { color:#000; font-family:arial; font-size:13px; font-weight:bold; width:100%; text-align:center; margin-top:13px; } 

    </style> 

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 
    <title>[....]</title> 
    </head> 
    <body> 
     <div id="outerContainer"> 
      <div id="imageScroller"> 
       <div id="cover"></div> 
       <div id="viewer" class="js-disabled"> 

        <?php include('famous/class/scraper.php'); 
          $scrape = new Scraper('http://www.universallifechurchministers.org'); 
          $scrape = (array)$scrape; 

         foreach($scrape as $multi) { 
         if(is_array($multi)) { 

          $holder = ''; 
          foreach($multi as $single) { 

           foreach($single as $k=>$v) { 
            switch($k) { 
             case 'fimg': $fimg = $v; break; 
             case 'simg': $simg = $v; break; 
             case 'name': $name = $v; break; 
             case 'note': $note = $v; break; 
             case 'long': $long = $v; break; 
            } 
           } 

            $id = strtolower(//clean 
              str_replace("'",'', 
              str_replace(' ','',$name) 
             )); 

           /* sample output: <a class='wrapper' href='[uri]/*-lrg.jpg' 
           *      title='[note]'> 
           * 
           *     <img class='logo' alt='[note]' id='[cleanName]' 
           *      src='[uri]/*-sm.jpg' /></a> 
           * 
           *     [....repeat....] 
           */ 

           $holder .= "<a class='wrapper' href='" . $fimg . "' title=\"" 
              . $name . ': ' . $note. "\"><img class='logo' alt=\"" . $note . "\" id='" 
              . $id . "' src='" 
              . $simg . "' /><div class='long'>" 
              . $long . "</div></a>"; 
          } 
         } 
         } 

         #echo $holder; 

        ?> 

        <!--// test-data //--> 
        <a class='wrapper' href='http://www.universallifechurchministers.org/images/big_image/ConanObrien.jpg' title="Conan O'Brien: TV host, comedian, writer, producer and performer."><img class='logo' alt="TV host, comedian, writer, producer and performer." id='conanobrien' src='http://www.universallifechurchministers.org/images/conan-obrien-sm.jpg' /><div class='long'>[.....]</div></a> 
        <a class='wrapper' href='http://www.universallifechurchministers.org/images/big_image/RobDyrdek.jpg' title="Rob Dyrdek: Skateboarding Entrepreneur, Fantasy Factory on MTV."><img class='logo' alt="Skateboarding Entrepreneur, Fantasy Factory on MTV." id='robdyrdek' src='http://www.universallifechurchministers.org/images/rob-drydek-sm.jpg' /><div class='long'>[.....]</div></a> 
        <a class='wrapper' href='http://www.universallifechurchministers.org/images/big_image/Glann-Beck.jpg' title="Glenn Beck: Talk Radio Host"><img class='logo' alt="Talk Radio Host" id='glennbeck' src='http://www.universallifechurchministers.org/images/image1.jpg' /><div class='long'>[.....]</div></a> 
        <a class='wrapper' href='http://www.universallifechurchministers.org/images/big_image/Mel-Blanc.jpg' title="Mel Blanc: Voice Actor"><img class='logo' alt="Voice Actor" id='melblanc' src='http://www.universallifechurchministers.org/images/image2.jpg' /><div class='long'>[.....]</div></a> 

       </div> 
      </div> 

     </div> 
     <script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js"></script> 
     <script type="text/javascript"> 
      $(function() { 

       //remove js-disabled class 
       $("#viewer").removeClass("js-disabled"); 

       //create new container for images 
       $("<div>").attr("id", "container").css({ position:"absolute"}).width($(".wrapper").length * 170).height(170).appendTo("div#viewer"); 

       //add images to container 
       $(".wrapper").each(function() { 
        $(this).appendTo("div#container"); 
       }); 

       //work out duration of anim based on number of images (1 second for each image) 
       var duration = $(".wrapper").length * 2000; 

       //store speed for later (distance/time) 
       var speed = (parseInt($("div#container").width()) + parseInt($("div#viewer").width()))/duration; 

       //set direction 
       var direction = "rtl"; 

       //set initial position and class based on direction 
       (direction == "rtl") ? $("div#container").css("left", $("div#viewer").width()).addClass("rtl") : $("div#container").css("left", 0 - $("div#container").width()).addClass("ltr") ; 

       //animator function 
       var animator = function(el, time, dir) { 

        //which direction to scroll 
        if(dir == "rtl") { 

         //add direction class 
         el.removeClass("ltr").addClass("rtl"); 

         //animate the el 
         el.animate({ left:"-" + el.width() + "px" }, time, "linear", function() { 

          //reset container position 
          $(this).css({ left:$("div#imageScroller").width(), right:"" }); 

          //restart animation 
          animator($(this), duration, "rtl"); 

          //hide controls if visible 
          ($("div#controls").length > 0) ? $("div#controls").slideUp("slow").remove() : null ;    

         }); 
        } else { 

         //add direction class 
         el.removeClass("rtl").addClass("ltr"); 

         //animate the el 
         el.animate({ left:$("div#viewer").width() + "px" }, time, "linear", function() { 

          //reset container position 
          $(this).css({ left:0 - $("div#container").width() }); 

          //restart animation 
          animator($(this), duration, "ltr"); 

          //hide controls if visible 
          ($("div#controls").length > 0) ? $("div#controls").slideUp("slow").remove() : null ;    
         }); 
        } 
       } 

       //start anim 
       animator($("div#container"), duration, direction); 

       //pause on mouseover 
       $("a.wrapper").live("mouseover", function() { 

        //stop anim 
        $("div#container").stop(true); 

        //show controls 
        ($("div#controls").length == 0) ? $("<div>").attr("id", "controls").appendTo("div#outerContainer").css({ opacity:0.7 }).slideDown("slow") : null ; 
        ($("a#rtl").length == 0) ? $("<a>").attr({ id:"rtl", href:"#", title:"rtl" }).appendTo("#controls") : null ; 
        ($("a#ltr").length == 0) ? $("<a>").attr({ id:"ltr", href:"#", title:"ltr" }).appendTo("#controls") : null ; 

        //variable to hold trigger element 
        var title = $(this).attr("title"); 

        //add p if doesn't exist, update it if it does 
        ($("p#title").length == 0) ? $("<p>").attr("id", "title").text(title).appendTo("div#controls") : $("p#title").text(title) ; 
       }); 

       //restart on mouseout 
       $("a.wrapper").live("mouseout", function(e) { 

        //hide controls if not hovering on them 
        (e.relatedTarget == null) ? null : (e.relatedTarget.id != "controls") ? $("div#controls").slideUp("slow").remove() : null ; 

        //work out total travel distance 
        var totalDistance = parseInt($("div#container").width()) + parseInt($("div#viewer").width()); 

        //work out distance left to travel 
        var distanceLeft = ($("div#container").hasClass("ltr")) ? totalDistance - (parseInt($("div#container").css("left")) + parseInt($("div#container").width())) : totalDistance - (parseInt($("div#viewer").width()) - (parseInt($("div#container").css("left")))) ; 

        //new duration is distance left/speed) 
        var newDuration = distanceLeft/speed; 

        //restart anim 
        animator($("div#container"), newDuration, $("div#container").attr("class")); 

       }); 

       //handler for ltr button 
       $("#ltr").live("click", function() { 

        //stop anim 
        $("div#container").stop(true); 

        //swap class names 
        $("div#container").removeClass("rtl").addClass("ltr"); 

        //work out total travel distance 
        var totalDistance = parseInt($("div#container").width()) + parseInt($("div#viewer").width()); 

        //work out remaining distance 
        var distanceLeft = totalDistance - (parseInt($("div#container").css("left")) + parseInt($("div#container").width())); 

        //new duration is distance left/speed) 
        var newDuration = distanceLeft/speed; 

        //restart anim 
        animator($("div#container"), newDuration, "ltr"); 
       }); 

       //handler for rtl button 
       $("#rtl").live("click", function() { 

        //stop anim 
        $("div#container").stop(true); 

        //swap class names 
        $("div#container").removeClass("ltr").addClass("rtl"); 

        //work out total travel distance 
        var totalDistance = parseInt($("div#container").width()) + parseInt($("div#viewer").width()); 

        //work out remaining distance 
        var distanceLeft = totalDistance - (parseInt($("div#viewer").width()) - (parseInt($("div#container").css("left")))); 

        //new duration is distance left/speed) 
        var newDuration = distanceLeft/speed; 

        //restart anim 
        animator($("div#container"), newDuration, "rtl"); 
       }); 
      }); 
     </script> 
    </body> 
</html> 

回答

0

此行下的「RTL」邏輯告訴元件,以保持滑動直到-632px(元件的寬度)。

//animate the el 
    el.animate({ 
     left: "-" + el.width() + "px" 
    }, time, "linear", function() { 

取下+「px」並改爲使用' - ='!

//animate the el 
    el.animate({ 
     left: "-=" + el.width() 
    }, time, "linear", function() { 

我不明白你爲什麼採取這種方法。爲什麼不使用這個,它會在它離開「查看器」之前滑動它?

//animate the el 
    el.animate({ 
     left: ($('div#viewer').offset().left - $('div#container').outerWidth()) + "px" 
    }, time, "linear", function() { 

此外,爲什麼#container這麼寬?爲什麼不讓它保持內容的寬度?它真的需要和.wrapper一樣寬嗎?

+0

我試圖把你的代碼,如果你看一路到最後,它做同樣的事情,三倍的長度。 http://www.themonastery.org/jd/slider.php# – ehime

+0

三倍的長度是什麼?它正在移動#container的寬度,這是630像素寬? – Kato

+0

現在看看我已經隱藏起來了,它仍然不會像最後一片葉子那樣停下來,或者更好的是,它會以一個連續的圓圈運行。我嘗試改變容器寬度,結果非常糟糕。 – ehime

0

這是一個連續循環滾動的例子。我認爲你可能會從中提煉出一些想法,或者直接用它作爲出發點;它解決了你所遇到的所有問題,因爲我理解它們。我希望這有幫助!

http://jsfiddle.net/katowulf/FeRUd/11/