我是 Twitter 的 Bootstrap 框架的新手。所以请原谅我的无知。
我正在尝试创建一个按预期工作的轮播。但是,仅在 iPhone 上,它不会横向拉伸。在电脑和 iPad 上可以。Twitter 的示例(此处)确实可以扩展。这是一张图片。
这是我的CSS:
/* Carousel base class */
.carousel
{
margin-bottom: 60px;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}
.carousel .container
{
position: relative;
z-index: 9;
}
.carousel-control
{
height: 80px;
margin-top: 0;
font-size: 120px;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
background-color: transparent;
border: 0;
z-index: 10;
}
.carousel .item
{
height: 500px;
}
.carousel img
{
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 500px;
}
.carousel-caption
{
background-color: transparent;
position: static;
max-width: 550px;
padding: 0 20px;
margin-top: 290px;
}
.carousel-caption h1,
.carousel-caption .lead
{
margin: 0;
line-height: 1.25;
color: #fff;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
}
.carousel-caption .btn
{
margin-top: 10px;
}
谢谢!