黑马程序员技术交流社区

标题: 试写了一个用jquery 和css实现的图片遮罩 [打印本页]

作者: 崔晓聪    时间: 2012-11-11 12:22
标题: 试写了一个用jquery 和css实现的图片遮罩
       学与致用,学了些前端知识自己随便弄了下,和大家分享分享!
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5.        
  6. <script src="jquery-1.7.1.min.js"></script>
  7. <script>
  8.         $(document).ready(function(){
  9.                 $(".aa").hover(function(){
  10.                         $(this).children("div").fadeIn("slow");
  11.                 },function(){
  12.                         $(this).children("div").fadeOut("slow");
  13.                 })
  14.         })
  15.        
  16. </script>
  17. <title>无标题文档</title>

  18. <style>
  19. .aa:hover{display:block;}
  20. </style>

  21. </head>

  22. <body>
  23.         <div style="width:950px;height:463px;outline:1px dashed #666;margin:0 auto;">
  24.            
  25.         <div class="aa" style="width:228px;height:463px;float:left;position:relative;">
  26.                 <img src="T1QiSDXmNAXXXXXXXX.jpg" />
  27.             <div style="width:100%;height:100%;top:0;left:0;background:rgba(96,96,96,0.5);position:absolute; display:none;"></div>
  28.         </div>
  29.         
  30.         <div style="float:left;width:700px;">
  31.                 <div style="width:auto;">
  32.                     <div class="aa" style="float:left;position:relative;" ><img src="T1L5ODXdVBXXXXXXXX.jpg" /><div style="width:100%;height:100%;top:0;left:0;background:rgba(96,96,96,0.5);position:absolute;display:none;"></div></div>
  33.                 <div class="aa" style="float:left;position:relative;"><img src="T1lP1DXgdtXXXXXXXX.jpg" /><div style="width:100%;height:100%;top:0;left:0;background:rgba(96,96,96,0.5);position:absolute;display:none;"></div></div>       
  34.                 <p style="margin:0;padding:0;clear:both;"></p>       
  35.             </div>
  36.             <div style="width:auto;">
  37.                     <div class="aa" style="float:left;position:relative;"><img src="T1L5ODXdVBXXXXXXXX.jpg" /><div style="width:100%;height:100%;top:0;left:0;background:rgba(96,96,96,0.5);position:absolute;display:none;"></div></div>
  38.                 <div class="aa" style="float:left;position:relative;"><img src="T1lP1DXgdtXXXXXXXX.jpg" /><div style="width:100%;height:100%;top:0;left:0;background:rgba(96,96,96,0.5);position:absolute;display:none;"></div></div>       
  39.                 <p style="margin:0;padding:0;clear:both;"></p>       
  40.             </div>
  41.         </div>
  42.         <p style="margin:0;padding:0;clear:both;"></p>
  43.            
  44.     </div>
  45. </body>
  46. </html>
复制代码
http://bbs.itheima.com/forum.php?mod=attachment&aid=OTMxMnxiZGMzMjJiMzg3M2UxYzkzMTlmM2NjNDFhYjVmZGNmM3wxNzMxMjc5MjIw&request=yes&_f=.rar
作者: 许庭洲    时间: 2012-11-11 20:41
值得学习ing!
作者: 穆爱明    时间: 2013-7-10 09:10
学习一下,感谢分享!
作者: 穆爱明    时间: 2013-7-10 09:10
再顶一下




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2