javascript - 尝试创建自定义 jQuery 文本滚动条

标签 javascript jquery

我正在尝试制作一个自己的自定义 js-text-scroller (我希望文本在 div 内向左滚动,然后一次又一次重复滚动)。

但是我遇到了一些问题。我真的无法指出我哪里做错了或者哪里需要新功能。欢迎我能得到的所有帮助。

这是一个 fiddle 示例:http://jsfiddle.net/Na373/

HTML:

<div class="wrap">
   <div class="scroll">
       <ul class="active">
           <li>Hello World</li>
           <li>Hello World</li>
           <li>Hello World</li>
           <li>Hello World</li>
           <li>Hello World</li>
           <li>Hello World</li>
           <li>Hello World</li>
           <li>Hello World</li>
           <li>Hello World</li>
           <li>Hello World</li>
       </ul>
   </div>

JS:

$ul = $('.scroll ul');
//copys the existing ul and appends it after the existing one
$('.scroll').append($ul.clone().removeClass().addClass('not_active'));

function scroll() {
    $active = $('.scroll ul.active');

    $active.each(function() {
        $not_active = $('.scroll ul.not_active');

        // foreach time the function runs the ul goes "left: -1px;"
        var current_position = parseInt($(this).css('left'));
        var new_position = current_position - 1;
        $(this).css('left', new_position+'px');

        var parent_width = $(this).parent().outerWidth(); // gets the width of ".scroll"
        var width = $(this).outerWidth(); // gets the width of the "ul"
        var shown_all = current_position + width;

        // if the right corner of the "ul" are att the right corner of ".scroll"
        // this if statement executes and adds new existing class on the "ul.not_active"
        // and adds class ".active" instead
        // this means that there are 2 ul with the class active 
        //running simultaneously
        if (shown_all == parent_width) {
            $not_active.removeClass().addClass('active');
        }

        // here it checks if the "ul.active" have past its own length to left
        // Here im trying to make it "not_active" and put it after the existing ".active"
        //
        // <ul class="active">....</ul> ----> <ul class="not_active">...</ul>
        //
        // then put it after the other "ul.active"
        //
        //            <ul class="active
        // ---------> <ul class="not_active"></ul>
        //
        // So it all beginns from the beginning
        if (current_position == '-'+width) {
            $(this).removeClass().addClass('not_active').css('left', '0');
            $(this).insertAfter($('.scroll ul').next());
        }
    });
};
// And here I run the function
setInterval(scroll, 10);

CSS:

.wrap {  
    position: relative;
    padding: 10px 10px 10px;
    height: 18px;
    background: #000;
    color: #fff;
    overflow: hidden;
    width: 500px;
}
.scroll {
   width: 500px;
   white-space: nowrap;
}
.scroll ul {
    left: 0;
    position: relative;
    margin: 0;
    padding: 0;
    display: inline;
    list-style: none;
}
.scroll ul li {
    padding: 0;
    margin: 0;
    display: inline;
}

最佳答案

我认为你的问题是下面的 if 语句中的条件

if (shown_all == parent_width) {

据我所知,shown_all = current_position + width,意味着shown_all将从 0 + ul 宽度开始,并以 0 结束。当前代码中,if 语句永远不会为 true。

如果您将 if 语句更改为 if (shown_all == 0) 或将变量 shown_all 的设置方式更改为 var shown_all = -current_position + width;,我想你会看到更好的结果。

关于javascript - 尝试创建自定义 jQuery 文本滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15091949/

相关文章:

javascript - Jquery - 如何从链接 href 获取页码并用作类

javascript - JQuery 交换列

JQuery Select2 下拉 onchange 选项文本颜色不改变

jquery - 使用 Web 服务获取 NSE 和 BSE 的股票报价并使用 json 进行解析

javascript - 如何使用来自 javascript 的 classList.contains 获取 bootstrap 下拉菜单中的 li 类

javascript - 从 JavaScript 设置组合框所选项目

javascript - React.js 如何使用虚拟 DOM 加速渲染

javascript - 可以在不改变布局或 DOM 的情况下使用 jQuery Mobile 吗?

javascript - @@的惯例

javascript - Firebase 帮助 : Avoid New ID on new Push