jquery 改变css的background rgba属性
废话少说,直接上代码
$("#toolBox ul li").hover(function(){
$(this).css("background","rgba(0,0,0,0.8)");
},function(){
$(this).css("background","rgba(0,0,0,0.65)");
});
废话少说,直接上代码
$("#toolBox ul li").hover(function(){
$(this).css("background","rgba(0,0,0,0.8)");
},function(){
$(this).css("background","rgba(0,0,0,0.65)");
});