当前位置: 编程技术>jquery
jquery弹出层Div背景半透明与内容不透明
来源: 互联网 发布时间:2014-10-07
本文导语: 例子,jquery弹出层背景半透明。 代码示例: jquery手写弹出层背景半透明,内容不透明 *{ margin:0; padding:0;} .alertDiv,.alertDiv1{ position:fixed; width:100%; height:100%; top:0; color:#fff;} .alertCon,.alertCon1{ position:absolute; width:100%; height...
例子,jquery弹出层背景半透明。
代码示例:
jquery手写弹出层背景半透明,内容不透明
*{ margin:0; padding:0;}
.alertDiv,.alertDiv1{ position:fixed; width:100%; height:100%; top:0; color:#fff;}
.alertCon,.alertCon1{ position:absolute; width:100%; height:100%; text-align:center; margin-top:20%; z-index:999;}
.alertBg,.alertBg1{ position:absolute; width:100%; height:100%; background:#000; opacity:0.7; z-index:99;}
.alertClose,.alertClose1{ position:absolute; width:100%; text-align:right; z-index:9999; color:#f00;}
www.
$(function(){
/*By Lean*/
alertContent(".clickAlert",".alertDiv",".alertClose");
alertContent(".clickAlert1",".alertDiv1",".alertClose1");
function alertContent(LeanA,LeanB,LeanC){
$(LeanB).hide();
$(LeanA).click(function(){
$(LeanB).fadeIn(200);
})
$(LeanC).click(function(){
$(LeanB).fadeOut(200);
})
}
})
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
Body内容
您可能感兴趣的文章:
- jQuery实现textarea文本框半透明文本提示效果
- jquery半透明设置实现代码
- CSS实现背景半透明的文字置于图片上的实例教程2
- DIV CSS 半透明阴影效果的实现方法
- DIV+CSS实现背景半透明效果的方法
- 纯CSS实现的多级半透明菜单