js实现图片产生遮罩效果 js实现鼠标移动到图片产生遮罩效果
数星星的咚咚咚 人气:0想了解js实现鼠标移动到图片产生遮罩效果的相关内容吗,数星星的咚咚咚在本文为您仔细讲解js实现图片产生遮罩效果的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:js,遮罩,下面大家一起来学习吧。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>mask</title> <style> .pic{ width:300px; height:250px; background:url(icon/product1.jpg) no-repeat; margin:40px auto; } #mask{ width:300px; height:250px; background-color: gray; margin:40px auto; opacity: 0.5; z-index: 1000; } </style> </head> <body> <div class="pic"> <!-- <div id="mask"></div> --> </div> </body> <script> var pic=document.getElementsByClassName("pic")[0]; var d=document.createElement("div"); pic.onmouseenter=function(){ // var d=document.createElement("div"); d.id="mask"; pic.appendChild(d); }; pic.onmouseleave=function(){ this.removeChild(d); }; </script> </html>
效果图:
加载全部内容