使用CSS在圆形DIV中拟合滚动条

时间:2012-10-10 20:38:12

标签: css

尽可能具体,这里是......我正在尝试在圆圈内实现子导航,但内容符合形状并需要滚动条来解决此问题。

我现在遇到一个问题,即尽管尝试使用CSS,但我仍有困难。目前,子导航上的滚动条垂直滚动到圆圈之外,内容似乎已经出现。

请参阅下面的screengrab。子导航内容从div中过高,滚动条滚动到远处。理想情况下,我希望内容突出显示在红色区域内,滚动条显示为蓝色。

Screengrab

滚动条的CSS(.jb_scrollbar):

.jb_scrollbar { clear: both; margin: 0px 0 10px;}
.jb_scrollbar .viewport { overflow: hidden; position: relative; }
.jb_scrollbar .overview { list-style: none; position: absolute; left: 0; top: 0; }
.jb_scrollbar .thumb .end,
.jb_scrollbar .thumb { margin: 50px 0 0 0; background-color: #ccc; }
.jb_scrollbar.scroll_y .scrollbar { position: relative; float: right; width: 10px;}
.jb_scrollbar.scroll_x .scrollbar { position: relative; height: 15px;clear:both;margin:0 0 5px;}
.jb_scrollbar.scroll_y .track { height: 100%; width:13px; position: relative; padding: 0 1px;}
.jb_scrollbar.scroll_x .track { width: 100%; height:7px; position: relative; padding: 1px 0px;}
.jb_scrollbar.scroll_y .thumb { height: 20px; width: 13px; cursor: pointer; overflow: hidden; position: absolute; top: 0; background: #d5d089;}
.jb_scrollbar.scroll_x .thumb { height: 13px; cursor: pointer; overflow: hidden; position: absolute; left: 0; background: #d5d089;}
.jb_scrollbar.scroll_y .thumb .end { overflow: hidden; height: 5px; width: 13px; background: #d5d089;}
.jb_scrollbar.scroll_x .thumb .end { overflow: hidden; width: 5px; height: 0px; background: #d5d089;}
.jb_scrollbar .disable{ display: none;}

子导航的CSS(#vertmenu):

#vertmenu { font-family: Arial, Helvetica, sans-serif; font-size: 100%; width: 221px; height: 221px; background: url(../images/subnav_bg.png) no-repeat; margin-top: 20px; float: left;  clear: both;}
#vertmenu a.nav-path-selected{ color:#000; border-bottom: 2px solid #23b3e9; margin-bottom: -2px; }
#vertmenu a:hover{ color:#000; border-bottom: 2px solid #23b3e9; margin-bottom: -2px; }
#vertmenu ul { list-style: none; margin: 40px 0 50px 10px; border: none; float:left; height: 150px; width: 130px; }
#vertmenu ul li { margin: 0px; padding: 3px 0 3px 14px; clear: both; background: url(../images/subnav_bullet_bg.png) no-repeat left center; }
#vertmenu ul li a { font-size: 14px; line-height: 14px; text-transform: none; display: block; text-decoration: none; color: #000000;}

如果你能帮助我发现一个非常值得赞赏的问题。一直在我的头上划过CSS以正确定位它。

非常感谢

1 个答案:

答案 0 :(得分:1)

我不知道如何使用滚动条插件,但这是一个仅使用CSS的快速演示:http://jsbin.com/icelih/4/edit

插件设置内联样式的大小,似乎需要大量的样板标记,我不得不仔细考虑(令人困惑的)文档,告诉你的网站是什么部分以及插件插入/需要哪些部分

因此,我创建了一个孤立的模型,您可以使用它来修复您的网站:http://jsbin.com/ilebaz/1/edit