Jquery滑块错误



所以我有我的脚本运行,(您可以使用示例链接/图像进行测试)但我有个问题。在计算了我的图像长度之后,似乎在滑块开始返回/重复之前,我的"过渡时期"是大约是图像长度的三倍。我们可以用样本来检验url。

<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似乎是我的滑块在再次开始滑动之前停止的位置。我想让它在最后一张图片结束后立即重新开始,但不知道是什么阻止了它这样做?

[你可以看到它在这里工作],这是完整的代码源代码

<!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>

在"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那么宽吗?

下面是一个连续循环滚动条的示例。我认为你可以从中汲取灵感,或者直接将其作为起点;就我所知,它解决了你所有的问题。我希望这对你有帮助!

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

相关内容

  • 没有找到相关文章

最新更新