您的位置:首页 > Web前端 > HTML5

如何做H5页面阴影悬浮效果

2016-02-25 16:20 946 查看


Html结构:

<div class="list">
<div class="list-close"></div>
<section>
<p class="list-all-btn">xxx</p>
<div class="list-wrap"></div>
<p class="cancel-btn" data-reactid=".0.1.1.1.2">取消</p>
</section>
</div>


第一步.设置阴影背景

.list {
position: absolute;
top: 0;
left: 0;
z-index: 9;
background: rgba(0,0,0,0.4);
width: 100%;
height: 100%;
}


第二步.定义关闭按钮(点击阴影就会关闭)

list-close {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}


第三步.定义内容区域的高度和宽度

.list > section {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background: #f8f8f8;
}


第四步.定义内容区域内的标题部分样式

.list-all-btn {
text-align: center;
color: #808080;
font-size: 12px;
height: 44px;
line-height: 44px;
border-bottom: 1px solid #e3e2e7;
}


第五步.定义内容区域内取消按钮的样式

.cancel-btn {
font-size: 20px;
line-height: 45px;
border-top: 1px solid #e3e2e7;
color: #000;
text-align: center;
margin-top: 20px;
background: #fff;
}


如此便能做出悬浮的窗口效果
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: