手机图片全屏显示

 样式:

 

//html:

       


            
          

 

//js:

  //点击隐藏图片

$("#maskimg").click(function() {
        $(this).hide();
    });

 

   //查看图片
    function expandImg(img) {
        $("#expand-img").attr('src', img);
        $("#maskimg").css('display', 'flex');
    }

你可能感兴趣的:(手机图片全屏显示)