-6ren">
gpt4 book ai didi

javascript - jQuery - 如何在淡入和淡出时使图像重叠?

转载 作者:行者123 更新时间:2023-11-28 06:31:32 25 4
gpt4 key购买 nike

所以我有这个:

https://jsfiddle.net/ysr50m2m/1/

HTML

class="photoset">
<img src="http://inspirebee.com/wp-content/uploads/2013/04/animal-fashion-parade.jpg" />
<img src="http://www.fubiz.net/wp-content/uploads/2013/03/Fashion-Zoo-Animals18.jpg" />
<img src="http://inspirebee.com/wp-content/uploads/2013/04/animal-in-fashion.jpg" />
<img src="http://www.fubiz.net/wp-content/uploads/2013/03/Fashion-Zoo-Animals20.jpg" />
</div>

<div class="photoset">
<img src="http://www.fubiz.net/wp-content/uploads/2013/03/Fashion-Zoo-Animals26.jpeg" />
<img src="http://www.fubiz.net/wp-content/uploads/2013/03/Fashion-Zoo-Animals14.jpg" />
<img src="http://inspirebee.com/wp-content/uploads/2013/04/animal-fashion.jpg" />
<img src="https://framboisemood.files.wordpress.com/2013/04/fashion-zoo-animals13.jpg" />
<img src="http://www.fubiz.net/wp-content/uploads/2013/03/Fashion-Zoo-Animals9.jpg" />
</div>

CSS

.photoset > img:not(:first-child) {
display: none;
}

JavaScript

 $(document).ready(function() {
$('.photoset').each(function(){
$(this).data('counter', 0);
});

var showCurrent = function(photoset) {
$items = photoset.find('img');
var counter = photoset.data('counter');
var numItems = $items.length;
var itemToShow = Math.abs(counter % numItems);
$items.fadeOut();
$items.eq(itemToShow).fadeIn();
};

$('.photoset').on('click', function(e) {
e.stopPropagation();
var photoset = $(this);
var pWidth = photoset.innerWidth();
var pOffset = photoset.offset();
var x = e.pageX - pOffset.left;
if (pWidth / 2 > x) {
photoset.data('counter', photoset.data('counter') - 1);
showCurrent(photoset);
} else {
photoset.data('counter', photoset.data('counter') + 1);
showCurrent(photoset);
}
});
});

我希望图像重叠。当我单击一张图片时,下一张首先出现在底部,然后它出现在第一张图片的位置。

我该如何解决这个问题?提前致谢。

最佳答案

由于 2 个元素不能占据相同的位置,除非它们被定位,我绝对将另一个图像放在前一个图像之上,当前一个图像消失时,我删除了绝对定位。

fiddle : https://jsfiddle.net/qu1Lxjo1/

CSS:

.photoset {
position: relative;
}

.photoset img {
position: relative;
top: 0px;
left: 0pxx
}

JS:

$items.fadeOut();
$items.eq(itemToShow).fadeIn({done: function() {
$(this).css('position','relative')
}}).css('position', 'absolute');
};

关于javascript - jQuery - 如何在淡入和淡出时使图像重叠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34935579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com