jquery实现背景墙聚光灯效果示例分享


Posted in Javascript onMarch 02, 2014
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
 "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
 <meta http-equiv="Content-type" content="text/html; charset=utf-8">
 <title>jQuery背景墙聚光灯效果代码 </title>
 <script type="text/javascript" charset="utf-8" src='/jquery.js'></script>
 <script type="text/javascript" charset="utf-8">
  $(window).load(function(){
   var spotlight = {
     // the opacity of the "transparent" images - change it if you like
    opacity : 0.2,
    /*the vars bellow are for width and height of the images so we can make 
    the <li> same size */
    imgWidth : $('.spotlightWrapper ul li').find('img').width(), 
    imgHeight : $('.spotlightWrapper ul li').find('img').height() 
   };
   //set the width and height of the list items same as the images
   $('.spotlightWrapper ul li').css({ 'width' : spotlight.imgWidth, 'height' : spotlight.imgHeight });
   //when mouse over the list item...
   $('.spotlightWrapper ul li').hover(function(){
    //...find the image inside of it and add active class to it and change opacity to 1 (no transparency)
    $(this).find('img').addClass('active').css({ 'opacity' : 1});
    //get the other list items and change the opacity of the images inside it to the one we have set in the spotlight array 
    $(this).siblings('li').find('img').css({'opacity' : spotlight.opacity}) ;
    //when mouse leave...
   }, function(){
    //... find the image inside of the list item we just left and remove the active class
    $(this).find('img').removeClass('active');
   });
   //when mouse leaves the unordered list...
   $('.spotlightWrapper ul').bind('mouseleave',function(){
    //find the images and change the opacity to 1 (fully visible)
    $(this).find('img').css('opacity', 1);
   });
  });
 </script>
 <style type="text/css" media="screen">
  body { background:black; color:white; font-family: 'georgia' } /* not important */
  .spotlightWrapper ul { 
   list-style-type: none; /* remove the default style for list items (the circles) */ 
   margin:0px; /* remove default margin */
   padding:0px; /* remove default padding */
  }
  .spotlightWrapper ul li { 
   float:left; /* important: left float */
   position:relative; /* so we can use top and left positioning */
  }
  .spotlightWrapper ul li a img { 
   width:200px; /* you don't need this, i just rescaled the images they are bigger then i want them to be ' */
   position:relative; /* so we can use top and left positioning */
   border:none; /* remove the default blue border */
  }
  .spotlightWrapper ul li a img.active {
   border:4px solid white; /* choose whatever you like */
   z-index:1; /* show it on top of the other images (they have z-index 0) */
   left: -4px; /* same as border width but negative */
   top: -4px; /* same as border width but negative */
  }
  .clear { clear:both; } /* to clear the float after the last item */
 </style>
</head>
<body>
 <h3>jQuery背景墙聚光灯效果</h3>
    <p>点击图片查看效果</p>
 <!-- start spotlightWrapper div -->
<div class='spotlightWrapper'>
  <!-- start unordered list -->
  <ul>
   <li><a href='#'><img src='images/1.jpg' /></a></li>
   <li><a href='#'><img src='images/2.jpg' /></a></li>
   <li><a href='#'><img src='images/3.png' /></a></li>
   <li><a href='#'><img src='images/4.jpg' /></a></li>
   <li><a href='#'><img src='images/5.jpg' /></a></li>
   <li><a href='#'><img src='images/6.png' /></a></li>
   <li><a href='#'><img src='images/7.jpg' /></a></li>
   <li><a href='#'><img src='images/9.PNG' /></a></li>
   <li><a href='#'><img src='images/10.jpg' /></a></li>
   <li><a href='#'><img src='images/11.png' /></a></li>
   <li><a href='#'><img src='images/12.png' /></a></li>
   <li><a href='#'><img src='images/13.jpg' /></a></li>
   <li><a href='#'><img src='images/14.png' /></a></li>
   <li><a href='#'><img src='images/15.jpg' /></a></li>
   <li><a href='#'><img src='images/16.jpg' /></a></li>
   <div class='clear'></div>
  </ul>
  <!-- end unordered list -->
 </div>
 <!-- end spolightWrapper div -->
</body>
</html>
Javascript 相关文章推荐
Ext面向对象开发实践(续)
Nov 18 Javascript
IE FF OPERA都可用的弹出层实现代码
Sep 29 Javascript
JavaScript 内置对象属性及方法集合
Jul 04 Javascript
JavaScript中toString()方法的使用详解
Jun 05 Javascript
JS的框架Polymer中的dom-if和is属性使用说明
Jul 29 Javascript
javascript css红色经典选项卡效果实现代码
May 17 Javascript
jQuery表单元素选择器代码实例
Feb 06 Javascript
setTimeout函数的神奇使用
Feb 26 Javascript
jQuery实现字符串全部替换的方法【推荐】
Mar 09 Javascript
详解JS中的柯里化(currying)
Aug 17 Javascript
bootstrap下拉框动态赋值方法
Aug 10 Javascript
vue组件开发props验证的实现
Feb 12 Javascript
jquery制作弹窗提示窗口代码分享
Mar 02 #Javascript
jquery中ajax函数执行顺序问题之如何设置同步
Feb 28 #Javascript
JavaScript获取当前页面上的指定对象示例代码
Feb 28 #Javascript
jquery获取当前点击对象的value方法
Feb 28 #Javascript
经过绑定元素时会多次触发mouseover和mouseout事件
Feb 28 #Javascript
判断某个字符在一个字符串中是否存在的js代码
Feb 28 #Javascript
如何设置一定时间内只能发送一次请求
Feb 28 #Javascript
You might like
星际玩家的三大定律
2020/03/04 星际争霸
PHP autoload与spl_autoload自动加载机制的深入理解
2013/06/05 PHP
PHP下载远程文件到本地存储的方法
2015/03/24 PHP
php静态成员方法和静态的成员属性的使用方法
2017/10/26 PHP
[原创]提供复制本站内容时出现,该文章转自脚本之家等字样的js代码
2007/03/27 Javascript
JS控制显示隐藏兼容问题(IE6、IE7、IE8)
2010/04/01 Javascript
Bookmarklet实现启动jQuery(模仿 云输入法)
2010/09/15 Javascript
javascript中普通函数的使用介绍
2013/12/19 Javascript
Zero Clipboard实现浏览器复制到剪贴板的方法(多个复制按钮)
2016/03/24 Javascript
JS控制层作圆周运动的方法
2016/06/20 Javascript
原生JS实现图片轮播切换效果
2016/12/15 Javascript
微信小程序 常见问题总结(4058,40013)及解决办法
2017/01/11 Javascript
js实现楼层导航功能
2017/02/23 Javascript
vue头部导航动态点击处理方法
2018/11/02 Javascript
JavaScript随机数的组合问题案例分析
2020/05/16 Javascript
JQuery通过键盘控制键盘按下与松开触发事件
2020/08/07 jQuery
Python列表append和+的区别浅析
2015/02/02 Python
python学习必备知识汇总
2017/09/08 Python
Python3生成手写体数字方法
2018/01/30 Python
python 字典套字典或列表的示例
2019/12/16 Python
OpenCV灰度化之后图片为绿色的解决
2020/12/01 Python
anaconda升级sklearn版本的实现方法
2021/02/22 Python
详解HTML5中download属性的应用
2015/08/06 HTML / CSS
详解HTML5 data-* 自定义属性
2018/01/24 HTML / CSS
美国在线精品家居网站:Burke Decor
2017/04/12 全球购物
匈牙利墨盒和碳粉购买网站:CDRmarket
2018/04/14 全球购物
回门宴新郎答谢词
2014/01/12 职场文书
大宝sod蜜广告词
2014/03/21 职场文书
公司门卫岗位职责范本
2014/07/08 职场文书
幼儿园端午节活动方案
2014/08/25 职场文书
党员作风建设整改方案
2014/10/27 职场文书
国家助学金感谢信
2015/01/21 职场文书
2015年第31个教师节致辞
2015/07/31 职场文书
2016年安全生产先进个人事迹材料
2016/02/29 职场文书
闭幕词的写作格式与范文!
2019/06/24 职场文书
浅谈mysql返回Boolean类型的几种情况
2021/06/04 MySQL