我有一个 div,其中包含 3 个 720x360px 的大图像,它们对用户都是可见的,但我想要一次只显示 1 个图像。
我的html代码:
<div class="main-slider">
<div class="slider-large-image">
<img src="images/floor_guide.png" alt="" width="727px" height="360px" />
<img src="images/ice_planet.jpg" alt="" width="727px" height="360px" />
<img src="images/buddy_work.jpg" alt="" width="727px" height="360px" />
</div>
<div class="slider-sidebar">
<img class="image1" src="images/floor_guide.png" alt="" width="240px" height="180px" />
<img class="image2" src="images/ice_planet.jpg" alt="" width="240px" height="180px" />
<img class="image3" src="images/buddy_work.jpg" alt="" width="240px" height="180px" />
</div>
</div>
我的 CSS 代码:
.main-slider{
height:360px;
width:1281px;
}
.slider-large-image{
width:720px;
display:inline-block;
white-space:nowrap;
}
.slider-large-image img{
display:inline-block;
}
你可以在这里看到输出:http: //jsfiddle.net/mareebsiddiqui/dPAnr/