1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > html5鼠标悬停遮罩 js实现鼠标移动到图片产生遮罩效果

html5鼠标悬停遮罩 js实现鼠标移动到图片产生遮罩效果

时间:2022-06-15 16:18:01

相关推荐

html5鼠标悬停遮罩 js实现鼠标移动到图片产生遮罩效果

本文实例为大家分享了js实现鼠标移动到图片产生遮罩效果的具体代码,供大家参考,具体内容如下

mask

.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;

}

var pic=document.getElementsByClassName("pic")[0];

var d=document.createElement("div");

pic.οnmοuseenter=function(){

// var d=document.createElement("div");

d.id="mask";

pic.appendChild(d);

};

pic.οnmοuseleave=function(){

this.removeChild(d);

};

效果图:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。