我目前正在为自己建立一个网站,但在设计它时遇到了一些麻烦。默认情况下,滑块下方有分页按钮以及上一个和下一个箭头。我设法删除了分页按钮,但无法将下一个和上一个按钮放置在滑块的顶部,这些按钮应该与包含图像的高度垂直居中。我也遇到了滑块高度的问题。高度应该是图像的高度。我网站上的绿色部分太高了。
我希望有一个人可以帮助我!
非常感谢您提前!
<style>
/* Prevents slides from flashing */
#slides {
display:none;
}
#slides .slidesjs-container {
margin-bottom:0px;
}
.slidesjs-pagination {
display: none;
}
.slidesjs-previous.slidesjs-navigation {
/* Styles for the Previous nav button */
width: 32px;
height: 100px;
background-color: red;
position: absolute;
left: 0;
z-index: 99;
background-image: url("..//img/prev.png");
}
.slidesjs-next.slidesjs-navigation {
/* Styles for the Next nav button */
width: 32px;
height: 100px;
background-color: red;
position: absolute;
right: 0;
z-index: 99;
background-image: url("..//img/next.png");
}
.slidesjs-control {
background: orange;
max-height: 0px;
}
.slidesjs-container {
width: 100%;
background: green;
}
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="js/jquery.slides.min.js"></script>
<script>
$(function(){
$("#slides").slidesjs({
width: 940,
height: 700,
autoHeight: true
});
});
</script>