博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery实现鼠标经过时高亮,同时其他同级元素变暗的效果
阅读量:5282 次
发布时间:2019-06-14

本文共 1615 字,大约阅读时间需要 5 分钟。

<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
""
>
<html>
  
<head>
    
<meta http-equiv=
"content-type"
content=
"text/html;charset=utf-8"
/>
    
<meta name=
"keywords"
content=
"关键词1,关键词2,关键词3等等"
/>
    
<title>鼠标经过时高亮,其他的暗</title>
    
<style type=
"text/css"
>
      
*{margin:0; padding:0;}
      
ul,li{list-style:none;}
      
ul{width:900px; height:200px; margin:100px auto;}
      
li{width:200px; height:200px; display:inline-block; border:1px solid
#d8d8d8; position:relative;}
      
.addblack{width:200px; height:200px; display:none; background:
#000;filter: alpha(opacity=10);-moz-opacity: 0.1; opacity: 0.1; position:absolute; left:0; top:0;}
    
</style>
    
<script type=
"text/javascript"
src=
"jquery-1.7.2.min.js"
></script>
    
<script type=
"text/javascript"
>
      
$(document).ready(
function
(){
         
$(
".index_Img"
).hover(
function
(){
           
$(
this
).siblings().find(
".addblack"
).show();
           
},
function
(){
             
$(
this
).siblings().find(
".addblack"
).hide();
             
$(
this
).find(
".addblack"
).hide();
         
})
      
})
    
</script>
  
</head>
  
<body>
    
<ul>
      
<li class=
"index_Img"
>
        
苹果
        
<div class=
"addblack"
style=
"left: 0px; top: 0px; width: 200px; height: 200px; display: none;"
></div>
      
</li>
      
<li class=
"index_Img"
>
        
香蕉
        
<div class=
"addblack"
style=
"left: 0px; top: 0px; width: 200px; height: 200px; display: none;"
></div>
      
</li>
      
<li class=
"index_Img"
>
        
葡萄
        
<div class=
"addblack"
style=
"left: 0px; top: 0px; width: 200px; height: 200px; display: none;"
></div>
      
</li>
      
<li class=
"index_Img"
>
        
凤梨
        
<div class=
"addblack"
style=
"left: 0px; top: 0px; width: 200px; height: 200px; display: none;"
></div>
      
</li>
    
</ul>
  
</body>
</html>

转载于:https://www.cnblogs.com/sjqq/p/6361489.html

你可能感兴趣的文章
12010 解密QQ号(队列)
查看>>
2014年辛星完全解读Javascript第一节
查看>>
装配SpringBean(一)--依赖注入
查看>>
java选择文件时提供图像缩略图[转]
查看>>
方维分享系统二次开发, 给评论、主题、回复、活动 加审核的功能
查看>>
Matlab parfor-loop并行运算
查看>>
string与stringbuilder的区别
查看>>
2012-01-12 16:01 hibernate注解以及简单实例
查看>>
iOS8统一的系统提示控件——UIAlertController
查看>>
PAT甲级——1101 Quick Sort (快速排序)
查看>>
python创建进程的两种方式
查看>>
1.2 基础知识——关于猪皮(GP,Generic Practice)
查看>>
迭代器Iterator
查看>>
java易错题----静态方法的调用
查看>>
php建立MySQL数据表
查看>>
最简单的线程同步的例子
查看>>
旅途上看的电影和观后感
查看>>
Ztree异步树加载
查看>>
关于IE和火狐,谷歌,Safari对Html标签Object和Embed的支持问题
查看>>
poj3320 Jessica's Reading Problem(尺取思路+STL)
查看>>