我创建了一个基本滑块,在使用 javascript 时每 5 秒运行一次图像。我的滑块工作得很好,但我不想再将它用作图像滑块。我想创建一个具有更多 html 设计功能的 div 并将其发布在我的滑块中而不是我的图像中。按照下面的代码,我需要更改和添加什么才能使其正常工作?
<!doctype html>
<html>
<head>
<title>Ad Slider</title>
<style>
#slider
{
width: 800px;
height: 200px;
}
#sliderImages
{
width: 100%;
height: 100%;
border: 1px solid #06c;
border-radius: 10px;
}
</style>
<script type = "text/javascript">
var image1 = new Image();
image1.src = "sky.jpg";
var image2 = new Image();
image2.src = "chatImage.jpg";
var image3 = new Image();
image3.src = "orange.jpg";
</script>
</head>
<body>
<div id = "slider">
<img id = "sliderImages" src = "sky.jpg" name = "slide" />
<script type = "text/javascript">
var sliderAd = 1
function slideAds()
{
if (!document.images)
{
return;
}
document.images.slide.src = eval("image"+sliderAd+".src")
if (sliderAd < 3)
{
sliderAd++;
}
else
{
sliderAd = 1;
}
setTimeout("slideAds()",5000)
}
slideAds()
</script>
</div>
</body>
</html>
现在不是添加这些图像,而是如何添加这种类型的内容,但以与图像相同的方式工作?
<div>
<p>Some Content</p>
</div>