我目前遇到了 JavaScript 滑块/幻灯片的问题。本质上,我在滑块中显示了 4 张图像。但是,我希望有一个图像作为这个滑块的边框,所以它会“覆盖”这些图像,使其看起来像滑块图像在这个边框图像的内部。
我的 HTML 代码:
<body>
<div id="container">
<div id="frame"></div>
<div id="slides">
<a href="#" class="prev"></a>
<a href="#" class="next"></a>
<div class="slides_container">
<img src="img/slider/1.jpg" width="954" height="247" alt="Slide 1">
<img src="img/slider/2.jpg" width="954" height="247" alt="Slide 2">
<img src="img/slider/3.jpg" width="954" height="247" alt="Slide 3">
<img src="img/slider/4.jpg" width="954" height="247" alt="Slide 4">
</div>
</div>
</div>
</body>
我的 CSS 代码:
/*
Page style
*/
body {
}
#container {
width: 964px;
height: 257px;
z-index: 99999;
padding: 10px;
margin: 0 auto;
position: relative;
}
#frame {
background: url(../img/slider_frame.png) no-repeat;
width: 964px;
height: 257px;
position: absolute;
top: -3px;
left: -80px;
z-index: 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
pointer-events: none;
-moz-box-shadow:;
-webkit-box-shadow:;
box-shadow: 0 0 5px #000, 0 0 6px #000;
}
/*
Slideshow
*/
#slides {
position: absolute;
top: 1px;
left: -74px;
z-index: 100;
width: 954px;
height: 247px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
/*
Slides container
Important:
Set the width of your slides container
Set to display none, prevents content flash
*/
.slides_container {
width: 954px;
position: relative;
display: none;
}
/*
Each slide
Important:
Set the width of your slides
If height not specified height will be set by the slide content
Set to display block
*/
.slides_container a {
width: 570px;
height: 270px;
display: block;
}
.slides_container a img {
display: block;
}
/*
Next/prev buttons
*/
#slides .next, #slides .prev {
position: absolute;
top: 129px;
left: -80px;
width: 48px;
height: 48px;
display: block;
z-index: 101;
}
#slides .next {
background-image: url(../img/arrow-right.png);
}
#slides .next:hover {
background-image: url(../img/arrow-right-hov.png);
}
#slides .prev {
background-image: url(../img/arrow-left.png);
}
#slides .prev:hover {
background-image: url(../img/arrow-left-hov.png);
}
#slides .next {
left: 826px;
}
所以本质上,我的问题是如何使滑块中的图像显示在幻灯片的边框内?