0

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

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

4

2 回答 2

1

Cmacu的Nicescroll 3建议效果很好!你试过了吗?它有许多不错的功能来个性化栏的外观,还支持水平栏,它支持桌面和移动版本上的许多浏览器。您可以在此处找到一些示例:实时示例。下载文件在 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});

  }

);

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

于 2014-01-10T21:05:26.360 回答
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;
}
于 2013-08-24T06:59:38.083 回答