JS代码,图片轮换,鼠标滑过显示第一张,鼠标移走显示另外一张。

 我来答
fuymsn
2013-02-03 · TA获得超过533个赞
知道小有建树答主
回答量:139
采纳率:0%
帮助的人:155万
展开全部
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script src="jquery-1.9.0.min.js"></script>
<style type="text/css">
#img_wrapper{
height:300px;
width:200px;
position:relative;
}
#img_wrapper img{
width:200px;
height:300px;
}
#mask {
width:200px;
height:300px;
position:absolute;
}
#hover_btn {
height:20px;
width:20px;
background-color:#ff00dc;
}
.bg_pink {
background-color:#ff00dc;
opacity:0.5;
}
</style>
<script type="text/javascript">
$(document).ready(function () {
$("#hover_btn").mouseover(function () {
$("#mask").addClass("bg_pink");
}).mouseout(function () {
$("#mask").removeClass("bg_pink");
});
});
</script>
</head>
<body>
<div id="img_wrapper">
<div id="mask"></div>
<img src="image.jpg"/>
</div>
<div id="hover_btn"></div>
</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式