$(function(){ $('.p_video .cover').click(function(){ let video = $(this).next().find('.video')[0]; $(video).attr('playsinline','true'); $(video).attr('webkit-playsinline','true'); if(video.paused == true){ video.play(); $(this).next().addclass('show'); }else{ video.pause(); $(this).next().removeclass('show'); } }); $('.closevideo').click(function(){ let video = $(this).prev('.video')[0]; if(video.paused == true){ video.play(); $(this).parent().addclass('show'); }else{ video.pause(); $(this).parent().removeclass('show'); } }); $('.videoibox').each(function(){ let videoimghref = $(this).find('.videoimg img').attr('src'); $(this).find('.coverimage img').attr('src',videoimghref); }); });