jQuery實現滑鼠經過圖片變亮其他變暗效果

來源:互聯網
上載者:User

   jQuery實現的仿商城圖片變亮變暗效果,滑鼠移至上方圖片之後該圖片變亮,其他圖片變暗。移開滑鼠所有圖片變亮,相容主流瀏覽器,適用瀏覽器:IE8、360、FireFox、Chrome、Safari、Opera、傲遊、搜狗、世界之窗,有需要的小夥伴可以參考下。

  以下是完整原始碼:

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 <!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" width="200" height="186" /></li> <li><img src="/images/02.jpg" width="200" height="186" /></li> <li><img src="/images/03.jpg" width="200" height="186" /></li> <li><img src="/images/04.jpg" width="200" height="186" /></li> <li><img src="/images/05.jpg" width="200" height="186" /></li> <li><img src="/images/06.jpg" width="200" height="186" /></li> </ul> </div> </body> </html>

   以上所述就是本文的全部內容了,希望大家能夠喜歡。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.