jquery css change the background rgba property

废话少说,直接上代码

$("#toolBox ul li").hover(function(){
	    $(this).css("background","rgba(0,0,0,0.8)");
	    },function(){
       $(this).css("background","rgba(0,0,0,0.65)");
	  });

  

Guess you like

Origin www.cnblogs.com/agen-su/p/12111633.html