私は 720x360px の 3 つの大きな画像を保持する div を持っていますが、それらはすべてユーザーに表示されますが、一度に 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/