使覆盖固定,但内容容器可滚动
Make overlay fixed-like, but the content container scrollable
我的代码创建了一个叠加层,它用黑色遮挡了页面,内部容器内部有一个表单。当它处于活动状态时,它会阻塞页面,但叠加层是绝对的并且仅将 window 宽度和高度拉伸 100%,当我向下滚动时,叠加层不会拉伸。
当我修复它时,它停留在一个地方,但它的内容不可滚动。
如何让它既固定又可滚动?
.quote_overlay, .email_overlay {
display: none;
position: absolute;
width: 100%;
height: 100%;
z-index: 1000;
top: 0;
left: 0;
background-image: url(img/overlay_bg.png);
}
.quote_container, .email_container {
width: calc(100% - 20px);
max-width: 600px;
background-color: #ccc;
position: relative;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
padding: 10px;
border-radius: 6px;
border: 0;
}
您需要将覆盖元素与电子邮件容器分开。
所以才这样做。
你的HTML:
<div class="email_container"></div>
<div class="email_overlay"></div>
然后在你的 css:
.email_overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(img/overlay_bg.png);
z-index: 1;
}
.email_container {
width: calc(100% - 20px);
max-width: 600px;
background-color: #ccc;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
padding: 10px;
border-radius: 6px;
border: 0;
z-index: 2;
}
我的代码创建了一个叠加层,它用黑色遮挡了页面,内部容器内部有一个表单。当它处于活动状态时,它会阻塞页面,但叠加层是绝对的并且仅将 window 宽度和高度拉伸 100%,当我向下滚动时,叠加层不会拉伸。
当我修复它时,它停留在一个地方,但它的内容不可滚动。
如何让它既固定又可滚动?
.quote_overlay, .email_overlay {
display: none;
position: absolute;
width: 100%;
height: 100%;
z-index: 1000;
top: 0;
left: 0;
background-image: url(img/overlay_bg.png);
}
.quote_container, .email_container {
width: calc(100% - 20px);
max-width: 600px;
background-color: #ccc;
position: relative;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
padding: 10px;
border-radius: 6px;
border: 0;
}
您需要将覆盖元素与电子邮件容器分开。 所以才这样做。
你的HTML:
<div class="email_container"></div>
<div class="email_overlay"></div>
然后在你的 css:
.email_overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(img/overlay_bg.png);
z-index: 1;
}
.email_container {
width: calc(100% - 20px);
max-width: 600px;
background-color: #ccc;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
padding: 10px;
border-radius: 6px;
border: 0;
z-index: 2;
}