1

我尝试在 javascript 幻灯片上添加一些文本,但不知何故它不起作用。文本显示在顶部,幻灯片在文本下方循环播放。

如何使文本正确显示在图像上?请看一下

<html>
<head>
<script type="text/javascript">
<!--
var image1=new Image()
image1.src="firstcar.gif"
var image2=new Image()
image2.src="secondcar.gif"
var image3=new Image()
image3.src="thirdcar.gif"
//-->
</script>
</head>
<body>
<div style="width:100px; height:56px">
    <div style="width:100px; height:56px; z-index:2">Tring to add some text on the top
        <div style="width:100px; height:56px; z-index:1">
              <img src="firstcar.gif" name="slide" width="100" height="56" />
        </div>
    </div>
</div>
<script>
<!--

var step=1
function slideit(){
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src")
if (step<3)
step++
else
step=1
setTimeout("slideit()",1500)
}
slideit()
//-->
</script>
</body>
</html>
4

2 回答 2

0

如果你想使用 z-index,你可能需要 position: absolute

或者您可以将 img 的高度降低到小于文本的 div 容器

尝试这个:

 <body>
 <div style="width:100px; height:56px">
 <div style="position:absolute; z-index:2">Tring to add some text on the top

</div>
 <div style="position: absolute;width:100px; height:56px; z-index:1">
          <img src="firstcar.gif" name="slide" width="100" height="56" />
    </div>
</div>
</body>
于 2013-10-16T00:08:39.570 回答
0

将要添加的文本移动到图像元素下方的元素中,为其提供绝对定位,为包含的 div 提供相对定位,并使用顶部、左侧、右侧或底部来定位文本。

HTML:

<div class="container">
    <img src="firstcar.gif" name="slide" width="100" height="56" />
    <span>Added Text Here</span>
</div>

CSS:

div.container {
    position: relative;
}
span {
    position: absolute;
    top: 0;
}
于 2013-10-16T03:27:29.253 回答