jquery – Bootstrap 3水平可滚动行网站设计

前端之家收集整理的这篇文章主要介绍了jquery – Bootstrap 3水平可滚动行网站设计前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用bootstrap 3创建一个水平滚动网页.到目前为止,我已尝试过 This.
@media (min-width:768px) {
.container {
width:100%;
}
#main-content{
     min-height: 100%;
    height: auto; 

}
#main-content > .row {
 overflow-x:scroll;
     overflow-y:hidden;
}    
#main-content > .row [class*="col-lg"],#main-content > .row [class*="col-md"],#main-content > .row [class*="col-sm"] {
    float:left;
}

我尝试使用this线程中提到的jquery方法但是即使在将宽度设置为行类之后它也不滚动,col-lg类显示here.

我还试图通过获得col-lg-height的高度来设置高度到行类,但仍然不是succeeded.

我想要实现的是:

  1. col-lg-,col-md- and col-sm- classes should need to be scrolled with it’s respective width content. the number of cols may vary according to the data.
  2. In col-xs,there is no change in the default behavior.

http://jsfiddle.net/ravimallya/7kCTD/3/这是工作场所.任何人都可以建议解决方法? css,jquery

解决方法

最后,我能够通过仅CSS方法获得我想要的东西.
@media (min-width:768px) {
  .container{
    width:100%;
  }
  #main-content{
    min-height: 100%;
    height: auto;
  }
  #main-content > .row {
    overflow-x:scroll;
    overflow-y:hidden;
    white-space:nowrap;
  }
  #main-content > .row [class*="col-lg"],#main-content > .row [class*="col-sm"] {
    float:none;
    display:inline-block;
    white-space:normal;
    vertical-align:top;
  }
}

添加了float:none并显示:inline-block to col- class以使其工作.

你可以看到工作示例here.我添加了niceScroll()来获得完美的外观.编辑是here.

原文链接:https://www.f2er.com/jquery/176937.html

猜你在找的jQuery相关文章