码迷,mamicode.com
首页 > 其他好文 > 详细

鼠标经过放大二维码

时间:2018-11-30 21:17:31      阅读:325      评论:0      收藏:0      [点我收藏+]

标签:out   href   nod   hid   .sh   进入   mouse   png   ide   

<style>
.nodeSmall {
width: 50px;
height: 50px;
background: url(../img/bgs.png) no-repeat -159px -51px;
position: fixed;
right: 10px;
top: 40%;
}
.erweima {
position: absolute;
top: 0;
left: -150px;
}
.nodeSmall a {
display: block;
width: 50px;
height: 50px;
}
.hide {
display: none;
}

.show {
display: block;
}
</style>

</head>
<body>
<div class="nodeSmall" id="node_small">
<a href="#"></a><!--锚定-->
<div class="erweima hide" id="er">
<img src="../img/456.png" />
</div>
</div>
<script>
function lss(id) {
return document.getElementById(id);
}
var aObj=lss("node_small").getElementsByTagName("a")[0];
//为a注册鼠标进入
aObj.onmouseenter=function () {
lss("er").className="erweima show";
};
//为a注册鼠标离开
aObj.onmouseout=function () {
lss("er").className="erweima hide";
};
</script>

鼠标经过放大二维码

标签:out   href   nod   hid   .sh   进入   mouse   png   ide   

原文地址:https://www.cnblogs.com/lujieting/p/10046467.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!