gpt4 book ai didi

html - 如何在全屏、图像幻灯片上创建输入字段

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

我将我的页面背景制作成循环播放一系列图像的幻灯片,但我希望能够在顶部显示字段。如何阻止字段位于图像后面?

<!doctype>
<html>
<header>
<meta charset="utf-8">
<title>Playcation 2013</title>
<script src="scripts/jquery.js"></script>
<script type="text/javascript" src="scripts/modernizer.js"></script>
<link rel="stylesheet" type="text/css" href="styles/index.css">
</header>
<body id="page">
<input type="submit" value="Send">
<ul class="cb-slideshow">
<li><span>Image 01</span><div></div></li>
<li><span>Image 02</span><div></div></li>
<li><span>Image 03</span><div></div></li>
<li><span>Image 04</span><div></h3></div></li>
</ul>
</body>

CSS

.cb-slideshow,
.cb-slideshow:after {
position: fixed;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
z-index: 0;
}
.cb-slideshow:after {
content: '';
background: transparent url(../images/pattern.png) repeat top left;
}
.cb-slideshow li span {
width: 100%;
height: 100%;
position: absolute;
top: 0px;
left: 0px;
color: transparent;
background-size: cover;
background-position: 50% 50%;
background-repeat: none;
opacity: 0;
z-index: 0;
-webkit-backface-visibility: hidden;
-webkit-animation: imageAnimation 36s linear infinite 0s;
-moz-animation: imageAnimation 36s linear infinite 0s;
-o-animation: imageAnimation 36s linear infinite 0s;
-ms-animation: imageAnimation 36s linear infinite 0s;
animation: imageAnimation 36s linear infinite 0s;
}
.cb-slideshow li div {
z-index: 1000;
position: absolute;
bottom: 30px;
left: 0px;
width: 100%;
text-align: center;
}

最佳答案

将 z-index 更改为负值就成功了:)

关于html - 如何在全屏、图像幻灯片上创建输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19252605/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com