我建立一个以视频为背景的网站。我希望所有的div都能够居中和响应,这就是我使用宽度和高度100%的原因。然后我有一个重叠的div,使用jquery在click上淡入淡出。我的问题是,在它消失之后我似乎无法在这个div周围获得均衡的余量。我希望保证金的div有ID“info”。
我的HTML看起来像这样:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="description" content=""/>
<meta name="keywords"content=""/>
<title></title>
<link href="css/main.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#btn").click(function(){
$("#info").fadeToggle("slow");
});
});
</script>
</head>
<header>
<div id="nav">
<p><a id="btn" href="#">+</a></p>
</div>
</header>
<body>
<div id="container">
<div id="info">
</div>
</div>
</body>
<video id="video_background" src="vid/147000037.mp4" autoplay>
</html>
和我的css:
* {
margin: 0;
padding: 0;
}
body {
font-family: "HelveticaNeue-UltraLight","HelveticaNeue-Light","Helvetica Neue",Helvetica,Arial,sans-serif;
}
header {
z-index: 999;
display: block;
height: auto;
width: 100%;
position: fixed;
}
header a {
text-decoration: none;
font-size: 1.8em;
color: #000000;
}
#nav {
position: relative;
float: right;
top: 15px;
right: 20px;
color: #000000;
}
#container {
height: 100%;
width: 100%;
display: block;
}
#video_background {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: -1000;
}
#info {
height: 100%;
width: 100%;
background: rgba(255,255,255,0.97);
z-index: 900;
display: none;
position: fixed;
margin: 10px;
vertical-align: center;
}
答案 0 :(得分:1)
由于您的信息框具有固定定位,您可以省略css中的高度/宽度和边距,并使用偏移量创建具有良好边距的响应式容器。只需将#info
css更改为以下内容:
#info {
/* omit height & width */
background: #bada55; /* Just because white on white is tough to see */
z-index: 900;
display: none;
position: fixed;
/* omit margin and use according offsets */
top:15px;left:15px;right:15px;bottom:15px;
vertical-align: center;
}