如何更改滚动条样式

时间:2013-08-24 06:41:31

标签: jquery scrollbar jscrollpane

我想知道如何将自定义滚动条添加到表(项目表)。 我写了下面的代码。一旦添加了10个项目,滚动条就会出现,但我想要显示一个自定义滚动窗格(例如:像fb中的滚动)。

<form action="#" method="get"><style type="text/css">.carttable{width: 252px;height: 200px;overflow: auto;}

2 个答案:

答案 0 :(得分:1)

Cmacu的Nicescroll 3建议非常有效!你试过吗?它有许多不错的功能,可以个性化条形的外观,也支持水平条,它支持桌面和移动版本上的许多浏览器。您可以在此处找到一些示例:Live Examples。 下载文件在HTML文件中有许多其他示例,因为您知道它是如何工作的。

只需在jQuery之后将加载脚本标记放在标题上,然后在加载页面时调用该函数。

HTML

<script type="text/javascript" src="jquery.nicescroll.js"></script>

JavaScript文件

$(document).ready(

  function() { 

    $("html").niceScroll({cursoropacitymax:0.6, cursorwidth:10px, horizrailenabled:false});

  }

);

为了个性化滚动条的外观,您必须在函数上传递输入,如上例所示。您可以在主页末尾的“配置参数”部分找到所有可用的输入。

答案 1 :(得分:0)

头:

<script type="text/javascript" id="sourcecode">
$j=jQuery.noConflict();
$j(function()
{
    $j('.scroll-pane').jScrollPane({
    showArrows: true,
    autoReinitialise: true});
});
</script>

CSS

/ *特定于此特定页面的样式* /

.scroll-pane
 {
width: 100%;
height: auto;
overflow: auto;
 }

/ *  * jScrollPane需要的CSS样式才能正常运行。  *  *在您的网站中包含此样式表,或将下面的样式复制并粘贴到样式表中 - jScrollPane  *没有它们可能无法正常运行。  * /

.jspContainer {
overflow: hidden;
position: relative;
 }

.jspPane {
 position: absolute;
 }

  .jspVerticalBar {
  background: none repeat scroll 0 0 none;
  height: 100%;
  position: absolute;
  right: 0;
top: 0;
width: 16px;
 }
  .jspHorizontalBar {
background: none repeat scroll 0 0 none;
bottom: 0;
height: 16px;
left: 0;
position: absolute;
width: 100%;
}


 .jspVerticalBar *, .jspHorizontalBar * {
 margin: 0;
 padding: 0;
}

.jspCap {
display: none;
}
.jspHorizontalBar .jspCap {
float: left;
 }
.jspTrack {
background: url(scroll-images/groen-streepje.png) 0 0 repeat-y scroll;
position: relative;
 }

.jspDrag {
background: none repeat scroll 0 0 #ACC314;
cursor: pointer;
left: 0;
position: relative;
top: 0;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
 }

.jspHorizontalBar .jspTrack, .jspHorizontalBar .jspDrag {
float: left;
height: 100%;
}

  .jspArrow {
  background: url(scroll-images/pijltjes.png) 0 0 no-repeat scroll;
 cursor: pointer;
 display: block;
 text-indent: -20000px;
  }

  .jspArrow.jspDisabled {
  background: url(scroll-images/pijltjes.png) 0 -9px no-repeat scroll; /* ander kleur pijltje */
cursor: default;
  }

.jspVerticalBar .jspArrow {
height: 9px;
 }

 .jspHorizontalBar .jspArrow {
 float: left;
 height: 100%;
 width: 16px;
  }

 .jspVerticalBar .jspArrow:focus {
 outline: medium none;
  }

.jspCorner {
background: none repeat scroll 0 0 #EEEEF4;
float: left;
height: 100%;
}

* html .jspCorner {
margin: 0 -3px 0 0;
 }

 .jspArrowUp
 {
 background-position: 0 0;
}

.jspArrowDown
{
 background-position: -15px 0 !important; /* twee pijlen in één png zetten */
}
.jspArrowDown.jspDisabled {
background-position: -15px -9px !important; /* twee pijlen in één png zetten */
}
.scroll-pane
{
width: 100%;
overflow: auto;
z-index: 99;
}