由于某些翻转的原因,我的图像轮播一次显示所有图像。我不知道为什么,但我认为这与我的 CSS 有关。
#full_image {
overflow:hidden;
position:absolute;
}
#full_image ul li img {
width:100%;
max-width:100%;
list-style: none outside none;
position: relative;
overflow: hidden;
}
#full_image .full_close {
background: url('icons/zoom-on.png') no-repeat;
top: 10px;
cursor: pointer;
height: 29px;
opacity: 1;
position: absolute;
width: 29px;
z-index: 999;
right: 10px;
}
#full_image .next_big {
background: url('icons/arrow-right.png') no-repeat;
top: 50%;
cursor: pointer;
height: 29px;
opacity: 1;
position: absolute;
width: 29px;
z-index: 999;
right: 0px;
}
#full_image .prev_big {
background: url('icons/arrow-left.png') no-repeat;
top: 50%;
cursor: pointer;
height: 29px;
opacity: 1;
position: absolute;
width: 29px;
z-index: 999;
left: 0px;
color: #222;
}
<div id="full_image">
<ul><li><img src="'+img+'" /></a></li></ul>
<a href="#" class="full_close"></a>
<a href="#" class="button next_big"></a>
<a href="#" class="button prev_big"></a>
</div>
我如何加载图像。
$.each(get_org_images, function (i, img) {
if (i > 0){
$('#full_image ul').append('<li><img src="' + img + '"/></li>');} });