我已经为我的网站制作了一个简单的滑块库,但是我发现当我点击下一步图像更新但它没有居中,直到我完成了图像的完整周期
如何从一开始就让图像对齐?
这是JS FIDDLE> http://jsfiddle.net/8pScd/4
HTML
<div class="view_gallery">view gallery</div>
<div class="prev control"><<</div>
<div class="next control">>></div>
<div class="gallery">
</div>
<div class="overlay"></div>
CSS
.overlay{
display: none;
position: absolute; top: 0; right: 0; bottom: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0,0,0,0.8);
z-index: 100;
}
.gallery{
z-index: 200;
padding: 10px;
position: absolute;
left: 50%;
background: #fff;
}
.control{
position: absolute;
top: 200px;
z-index: 300;
color: #fff;
text-transform: capitalize;
font-size: 2em;
cursor: pointer;
}
.prev{left: 0;}
.next{right:0;}
JQUERY
//images
var pics = new Array();
pics[0] = "cars.jpg";
pics[1] = "cats.png";
pics[2] = "dogs.png";
pics[3] = "bus.jpg"
//total amount of pictures to display
var pictot = pics.length-1;
var nxt = $(".next"),
prv = $(".prev"),
view = $(".view_gallery"),
gal = $(".gallery"),
overlay = $(".overlay"),
num = 0;
//view gallery
view.click(function(){
overlay.show();
gal.show();
// Start gallery off on the first image
gal.html('<img src="' + pics[0] + '" />');
});
nxt.click(function(){
// If on the last image set value to 0. Else add 1
if (num == pictot){num = 0;}else{num++;};
update();
});
prv.click(function(){
// If on first image set value to last image number. Else minus 1
if (num == 0){num = pictot;}else{num--;}
update();
});
function update () {
// update image with next/previous
gal.html('<img src="' + pics[num] + '" />');
//center image (not working very well)
var x = gal.width()/2;
gal.css("marginLeft", -x);
};
//hide
overlay.click(function(){
gal.hide();
$(this).hide();
});
答案 0 :(得分:1)
您遇到的问题是在点击上一个/下一个后立即调用“更新”功能。图像尚未加载,因此代码实际上并不知道新的gal.width。这就是为什么它在完整轮次之后工作的原因:图像现在在缓存中,因此已经可用。
最好的解决方案是使用javascript图像对象预加载图片;一个更简单的方法,但可能有问题的是使用'load'事件(它可能不适用于所有浏览器)。
答案 1 :(得分:0)
你可以将你的gallery div与一些简单的css hack对齐。
1)首先定义宽度。 (您可以使用jquery定义动态宽度)。
2)添加位置:绝对;
3)添加左:0,右:0;
4)添加保证金:0自动;
最终代码看起来像这样。
.gallery {
background: none repeat scroll 0 0 #FFFFFF;
left: 0;
margin: 0 auto !important;
padding: 10px;
position: absolute;
right: 0;
width: 600px;
z-index: 200;
}
答案 2 :(得分:0)
你的数学错了,看看这个例子http://jsfiddle.net/8pScd/6/
我只需要改变你的数学
var x = $('body').width()/2 - gal.width()/2;
gal.css("margin-left", x + 'px');
我在你的CSS中删除了这一行 左:50%;
.gallery{
z-index: 200;
padding: 10px;
position: absolute;
background: #fff;
}
答案 3 :(得分:0)
知道.gallery
宽度为920px,请设置left: 50%; margin-left: -470px
。同时删除javascript中更新图库容器左边距的行 - gal.css("marginLeft", -x);