1

滚动条显示在实际项目中,但在 Chrome 中单击“检查元素”之前,它不能用作滚动条。

我试图在 jsFiddle 中创建相同的场景。(但 jsFiddle 甚至没有显示滚动条,因为为 .nano 指定的高度不起作用)

怎么了?

$(".nano").nanoScroller({
  alwaysVisible: true
});
$(".pane").css("display","block");

http://jsfiddle.net/VqN6S/2/

4

1 回答 1

2

我取消了 nanoscroller.css 的链接并替换了您的 css:

.nano { width: 380px; height: 100px}
.nano .content { padding: 10px; text-align: justify;}
.nano .pane   { background: #888}
.nano .slider { background: #111}

对默认 nanoscroller.css 的内容稍作修改(注意 .nano 类的不同宽度和高度值):

/** initial setup **/
.nano {
  position : relative;
  width    : 300px;
  height   : 100px;
  overflow : hidden;
}
.nano .content {
  position      : absolute;
  overflow      : scroll;
  overflow-x    : hidden;
  top           : 0;
  right         : 0;
  bottom        : 0;
  left          : 0;
}
.nano .content:focus {
  outline: thin dotted;
}
.nano .content::-webkit-scrollbar {
  visibility: hidden;
}
.has-scrollbar .content::-webkit-scrollbar {
  visibility: visible;
}
.nano > .pane {
  background : rgba(0,0,0,.25);
  position   : absolute;
  width      : 10px;
  right      : 0;
  top        : 0;
  bottom     : 0;
  visibility : hidden\9; /* Target only IE7 and IE8 with this hack */
  opacity    : .01; 
  -webkit-transition    : .2s;
  -moz-transition       : .2s;
  -o-transition         : .2s;
  transition            : .2s;
  -moz-border-radius    : 5px;
  -webkit-border-radius : 5px;  
  border-radius         : 5px;
}
.nano > .pane > .slider {
  background: #444;
  background: rgba(0,0,0,.5);
  position              : relative;
  margin                : 0 1px;
  -moz-border-radius    : 3px;
  -webkit-border-radius : 3px;  
  border-radius         : 3px;
}
.nano:hover > .pane, .pane.active, .pane.flashed {
  visibility : visible\9; /* Target only IE7 and IE8 with this hack */
  opacity    : 0.99;
}

你可以在这里看到结果; http://jsfiddle.net/MxCtr/1/

所以,看来,问题出在你的 CSS 中。

于 2013-04-29T16:23:03.767 回答