// 首页图片视频显示 $(function(){ if (window.innerWidth > 768) { console.log("11111"); $(".mySwiper1 .swiper-slide").each(function () { if ($(this).find("video").length > 0) { $(this).find("video").show(); $(this).find("img").hide(); } else { $(this).find("img").show(); } }) } else { $(".mySwiper1 .swiper-slide").each(function () { $(this).find("video").hide(); $(this).find("img").show(); }) } })