我使用jQuery custom content scroller创建自定义内容滑块,并且需要设置其拖动器的样式。例如,如果我将其拖到中途-在红色(任何颜色)轨迹的后面。反之亦然。感谢您的任何建议)



(function($){
        $(window).load(function(){

            $("#content-1").mCustomScrollbar({
                axis:"x",
                advanced:{
                    autoExpandHorizontalScroll:true
                }
            });

            var i=1,
                imgs=["http://placehold.it/500x300.jpg","http://placehold.it/500x300","http://placehold.it/500x300","http://placehold.it/500x300","http://placehold.it/500x300","http://placehold.it/500x300","http://placehold.it/500x300"];

            $("a[rel='add-content']").click(function(e){
                e.preventDefault();
                var markup="<li id='img-"+i+"-container'><img src='"+imgs[i]+"' /></li>";
                $(".content .mCSB_container ul").append(markup);
                if(i<imgs.length-1){
                    i++
                }else{
                    i=0;
                }
            });

            $("a[rel='remove-content']").click(function(e){
                e.preventDefault();
                if($(".content .mCSB_container ul li").length<4){return;}
                i--
                if(i<0){i=imgs.length-1;}
                $("#img-"+i+"-container").remove();
            });

        });
    })(jQuery);


这是JsFiddle DEMO

最佳答案

我希望它会有用。

callbacks:{
                    whileScrolling: function(){
                        if(!$('.pathScrolled').length){$('.mCSB_scrollTools .mCSB_draggerRail').prepend('<div class="pathScrolled">');                                                         }
$('.pathScrolled').css({width: this.mcs.draggerLeft});
                    }
                }


JsFiddle

关于javascript - jQuery自定义内容滚动条遍历的路径样式:),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25024708/

10-09 09:25