【问题标题】:Crossbrowser content scroller with custom look具有自定义外观的跨浏览器内容滚动
【发布时间】:2013-08-04 03:20:26
【问题描述】:

有一个水平滚动的块

<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插件?还是有其他解决方案?

感谢任何帮助。

【问题讨论】:

  • 滚动?和滚动条一样?

标签: jquery html css scroll scroller


【解决方案1】:

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

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

【讨论】:

  • 谢谢,我试过了,确实不错,但是这种情况下不行。
【解决方案2】:

我使用 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/

【讨论】:

    猜你喜欢
    • 2017-09-02
    • 2023-03-24
    • 1970-01-01
    • 2020-01-27
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多