var W = window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth; // 弹框显示图片+切换 $(".tobig").each(function () { $(this).click(function (e) { e ? e.stopPropagation() : (event.cancelBubble = true); var s = $(this).index(); $(this).clone().appendTo(".big_imgss"); $(".big_imgss img").eq(s).css({ display: "block" }); $(".big_box").fadeIn(400); $(".big_imgss").addClass("active"); }); }); $(".hasVideo").each(function () { $(this).click(function (e) { e ? e.stopPropagation() : (event.cancelBubble = true); var s = $(this).index(); $(this).find("video").clone().appendTo(".big_imgss"); $(".big_imgss img").eq(s).css({ display: "block" }); $(".big_box").fadeIn(400); $(".big_imgss").addClass("active"); }); }); $("body,.big_box .close").click(function (e) { $(".big_imgss").empty(); $(".big_imgss").removeClass("active"); $(".big_imgss").removeClass("tobig"); $(".big_box").fadeOut(200); }); $(".big_imgss,.big_box .righttop,.big_box .btn").click(function (e) { e ? e.stopPropagation() : (event.cancelBubble = true); });