博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
透明度和背景透明---opacity&transparent
阅读量:6157 次
发布时间:2019-06-21

本文共 1121 字,大约阅读时间需要 3 分钟。

 

1、透明度

opacity: 0.3;
filter:alpha(opacity=30);  
opacity设置透明度,后代元素会继承当前元素的透明度。
效果如下图:

<!DOCTYPE html> <html> <head> <title>透明度---opacity---www.cnblogs.com/kuikui</title> <style type="text/css"> .test { width: 500px; height: 300px; text-align: center; line-height: 300px; font-size: 50px; opacity: 0.3; filter:alpha(opacity=30); background: red; } </style> </head> <body> <div class="test"> 测试。。。 </div> </body> </html>

运行代码

2、背景透明
  background-color: rgba(255,0,0,0.3);
  前三个参数代表rgb数值,最后一个参数代表透明度
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#50ff0000,endColorstr=#50ff0000);
  zoom: 1;
  50ff0000:前两位代表透明度,后面六位分表代表rgb的数值。
  效果如下图:
 

<!DOCTYPE html> <html> <head> <title>背景明度---transparent---www.cnblogs.com/kuikui</title> <style type="text/css"> .test { width: 500px; height: 300px; text-align: center; line-height: 300px; font-size: 50px; background: transparent; background-color: rgba(255,0,0,0.3); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=#50ff0000,endColorstr=#50ff0000); zoom: 1; } </style> </head> <body> <div class="test"> 测试。。。 </div> </body> </html>

运行代码

你可能感兴趣的文章
39、自定义控件(四)-- View源码分析
查看>>
[译]Hour 7 Teach.Yourself.WPF.in.24.Hours
查看>>
C++ constexpr
查看>>
mac linux netstat -n
查看>>
The Basics
查看>>
Linux/U-Boot Git Repo
查看>>
python了解
查看>>
在写HTML和CSS时的黄金规范
查看>>
【php】用filter_var实现的简单参数验证
查看>>
springMVC解析视图
查看>>
CSS之字体相关样式
查看>>
PHP两个字符串比较(人为出错),两字符串类型和数据表面相等,但strcmp()结果不为0...
查看>>
洛谷P3006 [USACO11JAN]瓶颈Bottleneck(堆模拟)
查看>>
onchange事件与onpropertychange事件的区别
查看>>
【Linux】 诊断工具-strace
查看>>
2015-11-04 报表 (asp.net 部分)
查看>>
编辑器Sublime Text 2
查看>>
php性能测试工具
查看>>
动态规划(DP)
查看>>
bzoj3611
查看>>