jQuery if then 幻灯片放映问题
我有一个通过上一个和下一个按钮手动控制的幻灯片。它工作得很好,但是使用 insertBefore
和 insertAfter
感觉很草率,所以我想探索一些其他方法。相反,我在想“如果这是最后一张图像,请返回到第一张图像+相反的向后退图像。
这是我的代码,但是当它到达最后一张图像时(它应该褪色的地方),我没有得到所需的结果语法
)) 对我来说看起来很可疑。
? if (slide == $('.z:last ' .dhut.ch/" rel="nofollow">http://brantley.dhut.ch/
谢谢!
这是我的 JavaScript:
$('#next').click(function() {
var slide = $('.z:visible'),
next = $('.z:visible').next();
slide.fadeOut(400, function() {
slide.removeClass('active');
if (slide == $('.z:last')) {
$('.z:first').addClass('active');
bromance();
$('.z:first').fadeIn(400);
} else {
next.addClass('active');
bromance();
next.fadeIn(400);
}
});
return false;
});
I've got a slideshow that's manually controlled with previous and next buttons. It works fine, but using insertBefore
and insertAfter
feels sloppy, so I'd like to explore some other methods. Instead, I'm thinking "if this is the last image, go back to the first + the opposite for going backwards.
Here's my code, but I'm not getting the desired result when it hits the last image (where it should fade in the first and start all over.
Syntaxual? if (slide == $('.z:last'))
looks fishy to me.
Test site: http://brantley.dhut.ch/
Thanks!
Here's my JavaScript:
$('#next').click(function() {
var slide = $('.z:visible'),
next = $('.z:visible').next();
slide.fadeOut(400, function() {
slide.removeClass('active');
if (slide == $('.z:last')) {
$('.z:first').addClass('active');
bromance();
$('.z:first').fadeIn(400);
} else {
next.addClass('active');
bromance();
next.fadeIn(400);
}
});
return false;
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个:
jQuery 不会直接返回对 DOM 元素的引用,它返回一个类似数组的对象,其中每个数组元素都是与您使用的选择器匹配的 DOM 元素。这意味着比较两个选择器的结果就是比较两个不同的类似数组的对象,即使它们包含相同的元素,它们也永远不会匹配。相反,比较每个数组中的第一个元素(因为在您的情况下您只期望只有一个元素)。
Try this:
jQuery doesn't return a reference to a DOM element directly, it returns an object that is array-like, where each array element is a DOM element matching the selector you used. This means comparing the results from two selectors is comparing two different array-like objects which isn't ever going to match even if they contain the same elements. Compare the first element in each array instead (because in your case you're expecting only one element anyway).
为什么不使用
slide = $('.active')
并尝试:first-child
而不是:first
why don't you use
slide = $('.active')
and try:first-child
instead of:first
检查以下条件并相应地指定下一个图像。
check the below condition and specify the next image accordingly.
我会比较元素 id 是否相等。
将
if (slide == $('.z:last'))
更改为if (slide.attr('id') === $('.z:last')。 attr('id'))
。或者,您可以测试最后一张幻灯片是否可见,如下所示:
I would compare element ids for equality.
Change
if (slide == $('.z:last'))
toif (slide.attr('id') === $('.z:last').attr('id'))
.Or, you can test to see if the last slide is visible like so: