我正在使用CSS和HTML弹出消息。我试图使弹出窗口的布局更具响应性,但由于我对CSS的了解有限,所以我陷入了困境。基本上,我不想强制使用固定像素的div
。另外,我的Button
和Anchor url
也用CSS中的修复位置进行了硬编码。我该如何改善呢?
当弹出窗口显示时,我希望将其后面的页面涂成灰色。但是,它似乎可以在jsfiddle中工作,但是当我将其放在我的网页上时,在弹出窗口显示时,我只看到页面的一半是灰色的。如何使整个页面变灰?
请在此处查看:http://jsfiddle.net/chs9x9wj/274/
弹出窗口看起来像这样:
css:
div.outer {
position: relative;
width: 300px;
height: 270px;
border: 3px solid black;
text-align: center;
margin:auto;
z-index: 100;
background-color: yellow;
}
div.outer a {
color: blue;
}
div.inner-right {
position: absolute;
top: 80px;
right: 10px;
width: 240px;
height: 100px;
/*border: 3px solid blue;*/
text-align: left;
}
div.inner-left {
position: absolute;
top: 80px;
left: 10px;
width: 20px;
height: 100px;
/*border: 3px solid red;*/
color: red;
}
div.inner-buttom {
position: absolute;
top: 180px;
left: 120px;
text-align: center;
}
.prompt-backdrop {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: black;
opacity: .8;
z-index: 99;
}
HTML:
<!DOCTYPE html>
<html>
<body>
<button onclick="myFunction()">Show me the Pop Up</button>
<div class="prompt-backdrop" id="backdrop" style="visibility: hidden"></div>
<br/>
<div class="outer" id="myPopup" style="visibility: hidden">
<a>!</a>
<br/><br/>
<a>This div element has position: relative</a>
<div class="inner-right">
This is a fact: <br/> <br/>
The human eye can distinguish about 10 million different colors.
</div>
<div class="inner-left">
!
</div>
<div class="inner-buttom">
<input type="submit" class="like" value="Next" />
<p><a href="google.com">Go Back</a></p>
</div>
</div>
</body>
</html>
JavaScript:
function myFunction() {
document.getElementById("myPopup").style.visibility = "visible";
document.getElementById("backdrop").style.visibility = "visible";
}
答案 0 :(得分:0)
在CSS中使用max-width
是在屏幕变小时不使用媒体查询的情况下动态缩放元素的简便方法。
如果要使底部链接居中,则可以定义宽度,例如。 width: 100px;
,将left: 50%;
设置为将元素移动到父元素的中间,然后margin-left: -50px;
(或宽度的负一半)以居中。
以下是其中的一些更改,可以帮助您入门: http://jsfiddle.net/chs9x9wj/281/
答案 1 :(得分:0)
我删除了一些绝对值,浮动并填充了左和右内部div,并允许按钮层叠。
“灰色”的背景取决于其后面的浅色背景,以显示99%的不透明度,也许未变灰的背景具有较暗的背景。
css:
div.outer {
-ms-transform: translate(0px, 50%); /* IE 9 */
-webkit-transform: translate(0px, 50%); /* Safari */
transform: translate(0px, 50%);
position: relative;
width: 300px;
height: 270px;
border: 3px solid black;
text-align: center;
margin: auto;
z-index: 100;
background-color: yellow;
}
div.outer a {
color: blue;
}
div.inner-right {
padding-right: 10px;
float: right;
width: 240px;
height: 100px;
text-align: left;
}
div.inner-left {
padding-left: 5px;
float: left;
width: 20px;
height: 100px;
color: red;
}
div.inner-button {
text-align: center;
}
.prompt-backdrop {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: black;
opacity: .8;
z-index: 99;
}
html:
<!DOCTYPE html>
<html>
<body>
<body>
<button onclick="myFunction()">Show me the Pop Up</button>
<div class="prompt-backdrop" id="backdrop" style="visibility: hidden"></div>
<br/>
<div class="outer" id="myPopup" style="visibility: hidden">
<a>!</a>
<br><br>
<a>This div element has position: relative</a>
<br><br>
<div class="inner-right">
This is a fact: <br/> <br/>
The human eye can distinguish about 10 million different colors.
</div>
<div class="inner-left">
!
</div>
<div class="inner-button">
<input type="submit" class="like" value="Next" />
<p><a href="https://www.google.com">Go Back</a></p>
</div>
</div>
</body>
</html>
js:不变
答案 2 :(得分:0)
http://jsfiddle.net/9x6v74sb/22/
如果可以使用Flexbox,我建议您这样做。
您可能应该添加
document.getElementById("back").onclick = function(e){
e.preventDefault();
document.getElementById("overlay").className = "";
}