首页 > web前端 > js教程 > 正文

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

WBOY
发布: 2016-05-16 16:00:20
原创
1675 人浏览过

以下是完整源代码:

<!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="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 style="color:white">jQuery突出图片列表中鼠标经过项
<br /></div>
<div class="hovertreebox" id="hovertreelist">
<ul>
<li><img  src="/images/01.jpg"    style="max-width:90%"  style="max-width:90%" / alt="jQuery实现鼠标经过图片变亮其他变暗效果_jquery" ></li>
<li><img  src="/images/02.jpg"    style="max-width:90%"  style="max-width:90%" / alt="jQuery实现鼠标经过图片变亮其他变暗效果_jquery" ></li>
<li><img  src="/images/03.jpg"    style="max-width:90%"  style="max-width:90%" / alt="jQuery实现鼠标经过图片变亮其他变暗效果_jquery" ></li>
<li><img  src="/images/04.jpg"    style="max-width:90%"  style="max-width:90%" / alt="jQuery实现鼠标经过图片变亮其他变暗效果_jquery" ></li>
<li><img  src="/images/05.jpg"    style="max-width:90%"  style="max-width:90%" / alt="jQuery实现鼠标经过图片变亮其他变暗效果_jquery" ></li>
<li><img  src="/images/06.jpg"    style="max-width:90%"  style="max-width:90%" / alt="jQuery实现鼠标经过图片变亮其他变暗效果_jquery" ></li>
</ul>
</div>
</body>
</html>
登录后复制

演示地址:http://demo.jb51.net/js/2014/jquery-images-blba/

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

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

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板