美文网首页前端让前端飞Web前端之路
点击对应的图片,就弹出对应的图片层

点击对应的图片,就弹出对应的图片层

作者: 花花0825 | 来源:发表于2017-04-10 13:24 被阅读31次

html:

<div class="img">

<img src="小图路径"  original="大图路径"  alt="">

</div>

接受大图的代码:

<div id="imgFrame">

<div class="bg"></div>

<div id="imgbox"></div>

</div>

css:

#imgFrame{

display: none;

}

.bg{

width: 100%;

height: 100%;

position: fixed;

top: 0;

left: 0;

z-index: 100;

background: #000;

opacity: 0.5;

}

#imgbox{

width: 80%;

position: fixed;

top: 50%;

left: 10%;

z-index: 1000;

}

js:

$(".img img").click(function(){       

           showOriginal(this);    

})   

 function showOriginal(img) {       

             $("#imgFrame").show();        

//getAttribute方法返回指定属性名的属性值。

            document.getElementById("imgbox").innerHTML = "<img src=' " + img.getAttribute("original") + " ' /> ";

  }   

 $(".bg").click(function(){       

        $("#imgFrame").hide();   

 })

相关文章

网友评论

    本文标题:点击对应的图片,就弹出对应的图片层

    本文链接:https://www.haomeiwen.com/subject/icysattx.html