gpt4 book ai didi

html - 使用 Z-index 隐藏元素

转载 作者:行者123 更新时间:2023-11-28 12:14:12 24 4
gpt4 key购买 nike

这里遇到了一个问题,即当其他 div 元素可见时隐藏其他 div 元素。正如您在下面的代码中看到的,当 f.ex.星际迷航已经可见,我希望使用 z-index 消失太平洋沿岸和世界大战 z。

我的 HTML 代码:

    <!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>BluShop</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>

<body>
<div id="container">
<header id="header">
<h1>BluShop</h1>
</header>

<section id="leftContent">
<div id="pacificrimContent">
<h2>Pacific Rim</h2>
<img alt="pacificrim image" src="../bilder/pacificRim.jpg">
<p>Blahblahblah</p>
</div>
<div id="startrekContent">
<h2>Star Trek</h2>
<img alt="startrek image" src="../bilder/starTrek.jpg">
<p>blahblahblah</p>
</div>
<div id="worldwarzContent">
<h2>World War Z</h2>
<img alt="worldwarz image" src="../bilder/worldWarZ.jpg">
<p>blahblahblah</p>
</div>
</section>
<aside id="rightContent">
<div id="pacificrimPoster">
<a href="#pacificrimContent"><img alt="pacificrim poster" src="../bilder/pacificRim.jpg"></a>
</div>
<div id="startrekPoster">
<a href="#startrekContent"><img alt="startrek poster" src="../bilder/starTrek.jpg"></a>
</div>
<div id="worldwarzPoster">
<a href="#worldwarzContent"><img alt="worldwarz poster" src="../bilder/worldWarZ.jpg"></a>
</div>
</aside>

<footer id="footer">
</footer>
</div>
</body>
</html>

CSS代码

    @charset "utf-8";
/* CSS Document */

body{
margin: 0;
}

#container{
width: 960px;
height: 600px;
margin: auto;
background-color: rgb(78, 80, 85);
border: solid 1px rgb(213, 214, 215);
}

#header{
height: 60px;
background-color: rgb(66, 69, 74);
margin-bottom: 10px;
}

#header h1{
float: left;
margin: 0px 10px 0px 10px;
color: rgb(14, 177, 238);
}

#leftContent{
float: left;
position: relative;
margin: 0px 10px 10px 10px;;
height: 460px;
width: 780px;
background-color: rgb(230, 231, 232);
}

#leftContent h2{
font-size: 20px;
margin: 10px 0px 0px 10px;
}

#leftContent img{
float: left;
margin: 0px 20px 10px 10px;
width: 310px;
height: 420px;
}

#leftContent p{
margin: -4px 20px 10px 0px;
}


#pacificrimContent, #startrekContent, #worldwarzContent{
position: absolute;
overflow: hidden;
transition: height .5s ease-in;
-webkit-transition: height .5s ease-in;
-moz-transition: height .5s ease-in;
}

#startrekContent, #worldwarzContent{
z-index: -1;
height: 0;
}

#rightContent{
float: right;
width: 140px;
height: 460px;
margin: 0px 10px 10px 10px;
background-color: rgb(230, 231, 232);
}

#rightContent img{
display: block;
width: 100px;
margin-left: auto;
margin-right: auto;
margin-top: 20px
}

#pacificrimContent:target, #startrekContent:target, #worldwarzContent:target{
height: 100%;
z-index: 10;
}

#footer{
height: 60px;
margin: 0;
background-color: rgb(16, 163, 210);
clear: both;
}

如您所见,我需要将《环太平洋》作为人们访问该网站时显示的标准电影,而另一部应该在我定位他们时可见。然后我定位的电影应该是可见的。目前,环太平洋地区始终可见,并且出现在另一部电影的背景中。

所以如果我 f.ex.选择瞄准星际迷航电影,然后是僵尸世界大战电影。过渡正常时,我会在后面看到环太平洋电影。

我不被允许使用 javascript,那么有什么方法可以让它工作吗?谢谢!

jsfiddle.net/f8ns4 - JSFiddle 来展示我的意思!

最佳答案

为您的个人电影 div 设置背景颜色,这样您就看不到它下面的内容。

#pacificrimContent, #startrekContent, #worldwarzContent{
position: absolute;
overflow: hidden;
transition: height .5s ease-in;
-webkit-transition: height .5s ease-in;
-moz-transition: height .5s ease-in;
background-color: rgb(230, 231, 232);
}

演示:http://jsfiddle.net/f8ns4/1/

关于html - 使用 Z-index 隐藏元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19298822/

24 4 0
文章推荐: javascript - 如何使用 angularjs 或 javascript 从数组中获取字符串
文章推荐: ios - 为什么在 Swift 4 中使用委托(delegate)传递数据失败
文章推荐: css - 如何设置
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com