jQuery实现鼠标经过图片变亮其他变暗效果

jQuery实现的仿商城图片变亮变暗效果,鼠标悬停图片之后该图片变亮,其他图片变暗。移开鼠标所有图片变亮,兼容主流浏览器,适用浏览器:IE8、360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗,有需要的小伙伴可以参考下。

以下是完整源代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jQuery实现鼠标经过图片变亮效果</title><base target="_blank" /> <style type="text/css"> a {color:white;} body{background:#000;} body,div,ul,li,img{padding:0;margin:0; border:0; list-style:none;} .hovertreebox{width:630px; border:1px solid #ccc; margin:10px auto; overflow:hidden; padding:10px 0 0 10px;} .hovertreebox li{width:200px; height:186px; float:left; margin-right:10px; margin-bottom:10px; cursor:pointer;} </style> <script type="text/javascript" src="https://www.jb51.net/jquery/jquery-1.11.2.min.js"></script> <script type="text/javascript"> $(function(){ $('.hovertreebox li').mouseover(function (e) { $(this).siblings().stop().fadeTo(500,0.4); }); $('.hover'+'treebox li').mouseout(function (e) { $(this).siblings().stop().fadeTo(500,1); }); }) </script> </head> <body> <div>jQuery突出图片列表中鼠标经过项 <br /></div> <div> <ul> <li><img src="https://www.jb51.net/images/01.jpg" /></li> <li><img src="https://www.jb51.net/images/02.jpg" /></li> <li><img src="https://www.jb51.net/images/03.jpg" /></li> <li><img src="https://www.jb51.net/images/04.jpg" /></li> <li><img src="https://www.jb51.net/images/05.jpg" /></li> <li><img src="https://www.jb51.net/images/06.jpg" /></li> </ul> </div> </body> </html>

演示地址:

特效下载:https://www.jb51.net/jiaoben/264211.html

以上所述就是本文的全部内容了,希望大家能够喜欢。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgjzpg.html