博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
跨浏览器的遮罩层透明度
阅读量:6700 次
发布时间:2019-06-25

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

跨浏览器的遮罩层透明度

css 样式:

Css代码  
  1. background-color: rgba(2552552550.5);  
  2.     filter: alpha(opacity =   30);  
  3. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";  

 遮罩div的全部样式:

Css代码  
  1. #loadPanel {  
  2.     overflow-y: auto;  
  3.     overflow-x: auto;  
  4.     width: 100%;  
  5.     top: 97px;  
  6.     left: 0px;  
  7.     position: absolute;  
  8.     background-color: rgba(2552552550.5);  
  9.     filter: alpha(opacity =   30);  
  10.     /*opacity: .3;*/  
  11.     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";  
  12.     z-index: 99999;  
  13.     /*background-image: url("../images/loading.gif");*/  
  14.     background-repeat: no-repeat;  
  15.     background-position-x: center;  
  16.     -moz-background-position-x: center;  
  17.     -ms-background-position-x: center;  
  18.     background-position-y: center;  
  19.     -moz-background-position-y: center;  
  20.     -ms-background-position-y: center;  
  21.     background-attachment: fixed;/* 使背景图片相当于可视区域 */  
  22. }  

 

 

转载地址:http://svqoo.baihongyu.com/

你可能感兴趣的文章
Android之WebViewClient与WebChromeClient的区别
查看>>
学习淘宝指数有感
查看>>
Shell获取文件的文件名和扩展名的例子
查看>>
[转]Linux动态库的种种要点
查看>>
AngularJS快速入门指南11:事件
查看>>
开源布局控件 WeifenLuo.WinFormsUI.Docking.dll使用
查看>>
以前的“约炮神器”陌陌12月或赴美上市
查看>>
sublime 3 注册码
查看>>
10年微软MVP路(如何成为一个MVP?)
查看>>
uva 6957 Hyacinth bfs
查看>>
WINDOWS 的 MKLINK : 硬链接,符号链接 : 文件符号链接, 目录符号链接 : 目录联接...
查看>>
单例模式
查看>>
编译hibernate源代码
查看>>
Surface Pro 3 扩展坞体验
查看>>
MySQL 源码系列:1:窥探篇
查看>>
Codeforces Round #288 (Div. 2)D. Tanya and Password 欧拉通路
查看>>
repo总结
查看>>
pm2 安装使用
查看>>
2015必须推荐的Android框架,猿必读系列!
查看>>
书单:数学、物理类的「闲书」
查看>>