自定义带箭头滚动,仅当文本高于
时高度

发布于 2024-10-04 04:23:56 字数 258 浏览 2 评论 0原文

我使用 jScrollPane 作为自定义滚动条,在我的例子中我需要使用箭头。你知道,设计师...我有一个可以工作的工作代码,但是如果文本不大于

<,我需要禁用 (display:none;) 箭头/代码>。

代码和示例: http://jsfiddle.net/Mdy2r/2/

提前谢谢您!

I am using jScrollPane for custom scrollbars, in my case I need to use arrows. You know, designers... Well I've a working code that works, but I i need to disable (display:none;) the arrows if the text isn't bigger than the <div />.

The code and example: http://jsfiddle.net/Mdy2r/2/

Thank you in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤檠 2024-10-11 04:23:56

如果您升级到 jScrollPane [http://jscrollpane.kelvinluck.com/] 的当前版本,那么您将能够设置箭头的样式,以便它们在禁用(或其他不必要的情况)时消失:

.jspArrow.jspDisabled
{
    display: none;
}

If you upgrade to the current version of jScrollPane [http://jscrollpane.kelvinluck.com/] then you will be able to style the arrows so that they disappear when they are disabled (or otherwise unnecessary):

.jspArrow.jspDisabled
{
    display: none;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文