在html中,设置元素的透明度
在css相应元素中添加下面两行代码即可。
filter:alpha(opacity=50); /*仅在ie中支持*/
opacity:0.5; /*不支持ie*/
opacity的取值范围为0~1,0表示不透明,1表示全透明