如何在全屏幕上创建输入字段,图像幻灯片

时间:2013-10-08 15:57:12

标签: html5 image css3 html background

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

<!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;
}

1 个答案:

答案 0 :(得分:0)

将z-index更改为负值:)