jquery实现图片鼠标经过出现边框效果的代码

发布时间:2019-12-13编辑:脚本学堂
分享一例jquery代码,实现当鼠标经过图片是,会图片的周围显示一个边框的效果,感兴趣的朋友参考学习下。

本节内容:
jquery 图片边框效果

实现如下的效果:
当鼠标经过时图片产生边框效果,将边框控制直接加在IMG标签上。

先来看一段错误的控制代码,如下:
 

复制代码 代码示例:
<html>
<head>
<script type="text/javascript" src="http://www.w3school.com.cn/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#box a").mouseover(function(){
$(this).css("border","1px solid red");
});
$("#box a").mouseout(function(){
$(this).css("border","none");
});
});
</script>
<style>
#box a{ display:block; z-index:1000; width:98px; height:98px;}
</style>
</head>
<body>
<div id="box" style="width:100px; height:100px;">
<a href="#"><img src="erwm.png" border="0" width="99" height="99"/></a>
<a href="#"><img src="erwm.png" border="0" width="99" height="99"/></a>
</div>
</body>
</html>

以下为正确的代码:
修改后的正确设计思路,红色部分为调整后的设置
 

复制代码 代码示例:
<html>
<head>
<script type="text/javascript" src="http://www.w3school.com.cn/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#box img").mouseover(function(){
$(this).css("border","1px solid red");
});
$("#box img").mouseout(function(){
$(this).css("border","none");
}); // www.jb200.com
});
</script>
<style>
#box a{ display:block; z-index:1000; width:98px; height:98px;}
</style>
</head>
<body>
<div id="box" style="width:100px; height:100px;">
<a href="#"><img src="erwm.png" border="0" width="99" height="99"/></a>
<a href="#"><img src="erwm.png" border="0" width="99" height="99"/></a>
</div>
</body>
</html>