0

有一个水平滚动的块

<div class="popular-items">
<div class="popular-wrapper">
    <ul>
        <li>1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
        <li>5</li>
    </ul>
</div><!-- .popular-wrapper -->
</div><!-- .popular-items-->

.popular-items {
clear: both;
overflow: hidden;
}   
.popular-wrapper {
clear: both;
overflow-x: scroll;
overflow-y: hidden;
}
.popular-items ul {
 width: 1200px;
}
.popular-items li {
width: 238px;
height: 440px;
float: left;
text-align: center;
border: 1px solid red;
}

http://jsfiddle.net/DjHRs/3/

问题是滚动条必须看起来和这个完全一样在此处输入图像描述

如何用自定义卷轴替换标准卷轴?可能有一些jQuery插件?还是有其他解决方案?

感谢任何帮助。

4

2 回答 2

0

对于这项工作,我通常使用这个插件:http: //jscrollpane.kelvinluck.com/(有垂直和水平滚动的演示)

简单且可定制。(但制作绿线可能需要更多的工作)

于 2013-08-03T12:09:58.323 回答
0

我使用 jQuery Ui Slider 解决了这个问题

<div class="scroll-pane">
    <ul class="scroll-content">
        <li>1</li>
        <li>2</li>
        <li>3</li>
        <li>4</li>
        <li>5</li>
    </ul>
    <div class="scroll-bar-wrap"><div class="scroll-bar"></div></div>
</div>

.scroll-pane {
overflow: hidden;
width: 714px;
padding: 0 0 20px;
float:left;
}
.scroll-content {
width: 1190px;
float: left;
}
.scroll-content li {
width: 238px;
height: 440px;
float: left;
text-align: center;
}
.scroll-bar-wrap {
clear: left;
width: 672px;
height: 11px;
padding: 4px 4px 0;
margin: 0 auto;
background: #ede9d6;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-moz-box-shadow: inset 1px 1px 2px #a8a598;
-webkit-box-shadow: inset 1px 1px 2px #a8a598;
box-shadow: inset 1px 1px 2px #a8a598;
}
.scroll-bar {
position: relative;
}
.scroll-bar-wrap .ui-slider {
width: 672px;
height: 8px;
border-bottom: 1px solid #faf9f4;
background: #00ca52;
position: relative;
cursor: pointer;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-moz-box-shadow: inset 1px 1px 2px #009b41;
-webkit-box-shadow: inset 1px 1px 2px #009b41;
box-shadow: inset 1px 1px 2px #009b41;
  }
 .scroll-bar-wrap .ui-slider-handle {
width: 23px;
height: 23px;
top: -7px;
margin-left: -11px;
position: absolute;
background: url(http://640miles.com/html-test/mm/drag.png) no-repeat;
border: none;
cursor: pointer;
}
.ui-slider .ui-slider-range {
height: 8px;
background: #adadad;
border-bottom: 1px solid #faf9f4;
border-radius: 4px 0 0 4px;
-moz-border-radius-topleft: 4px;
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;
-webkit-border-top-left-radius: 4px;
-moz-box-shadow: inset 1px 1px 2px #848484;
-webkit-box-shadow: inset 1px 1px 2px #848484;
box-shadow: inset 1px 1px 2px #848484;
}

$(function() {

//scrollpane parts
var scrollPane = $( ".scroll-pane" ),
scrollContent = $( ".scroll-content" );

//build slider
var scrollbar = $( ".scroll-bar" ).slider({
    range: "min",
            min: 0,
            max: 100,
    slide: function( event, ui ) {
        if (scrollContent.width() > scrollPane.width() ) {
            scrollContent.css( "margin-left", Math.round(
            ui.value / 100 * ( scrollPane.width() - scrollContent.width() )) + "px" );
        } else {
            scrollContent.css( "margin-left", 0 );
        }
    }
});

});

http://jsfiddle.net/DjHRs/5/

于 2013-08-03T19:08:51.450 回答