欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

background-color设置为透明的方法

程序员文章站 2024-03-18 13:01:04
...
  1. 比较好的方法
background-color:transparent;
  1. 不太好的方法(模仿透明,不仔细看,看不出来)
/* 前三个参数是颜色,后一个是透明度,效果为白色背景透明。*/
background-color: rgba(255,255,255,0.2);
  1. jquery设置背景图片
$(this).css("background-image","url(on.jpg)");