jquery实现hover图片半透明效果
hover时实现此透明,只需以下代码:
$(document).ready(function(){
     $("img").hover(function(){
      $(this).fadeTo("fast",0.7)
      },function(){
      $(this).fadeTo("fast",1)  
      })
    }) 相关推荐
  MaureenChen    2020-03-01  
   HSdiana    2019-12-27  
   lunareclipse    2019-12-23  
   Uching    2006-11-13  
   PHP基础学习    2019-01-15  
   dazhifu    2019-07-01  
   刁连通    2019-01-15  
   NARUTOLUOLUO    2016-07-11  
   vavid    2016-01-16  
   yaodilu    2019-06-27  
   sorryericsson    2014-11-18  
   realitycss    2014-07-24  
   AlisaClass    2014-05-05