gpt4 book ai didi

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

转载 作者:技术小花猫 更新时间:2023-10-29 11:14:33 24 4
gpt4 key购买 nike

我正在尝试使用 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 方法线程,但即使将宽度设置为 row 类,col-lg 类也不会滚动 here .

我还尝试通过获取 col-lg- height 的高度来将高度设置为 row 类,但仍然不是 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-md"], #main-content > .row [class*="col-sm"] {
float:none;
display:inline-block;
white-space:normal;
vertical-align:top;
}
}

float:nonedisplay:inline-block 添加到 col- 类以使其正常工作。

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

关于jquery - Bootstrap 3 水平滚动行网站设计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20332830/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com