本文實例為大家分享了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> <p class="pic"> <!-- <p id="mask"></p> --> </p> </body> <script> var pic=document.getElementsByClassName("pic")[0]; var d=document.createElement("p"); pic.onmouseenter=function(){ // var d=document.createElement("p"); d.id="mask"; pic.appendChild(d); }; pic.onmouseleave=function(){ this.removeChild(d); }; </script> </html>效果圖:
以上是JS實作滑鼠放到圖片上產生遮罩效果的程式碼案例的詳細內容。更多資訊請關注PHP中文網其他相關文章!