I'm trying to to make the pictures in slideshow automatically change. I looked up in other questions, but i found people using different methods of creating a slideshow than mine and i used the steps mentioned on other questions, but couldn't get it to run.
Here's my HTML code:
<div id="slider">
<div id="slide-wrapper" class="rounded clear">
<script src="images\demo\slider\slideshow.js"></script>
<figure id="slide-1"><a class="view" href="#"><img src="images/demo/slider/1.png" alt=""></a>
<figcaption>
<h2>Text</h2>
<p>Text</p>
<p class="right"><a href="#">Continue Reading »</a></p>
</figcaption>
</figure>
<figure id="slide-2"><a class="view" href="#"><img src="images/demo/slider/2.png" alt=""></a>
<figcaption>
<h2>Text</h2>
<p>Text.</p>
<p class="right"><a href="#">Continue Reading »</a></p>
</figcaption>
</figure>
<figure id="slide-3"><a class="view" href="#"><img src="images/demo/slider/3.png" alt=""></a>
<figcaption>
<h2>Text</h2>
<p>Text</p>
<p class="right"><a href="#">Continue Reading »</a></p>
</figcaption>
</figure>
<figure id="slide-4"><a class="view" href="#"><img src="images/demo/slider/4.png" alt=""></a>
<figcaption>
<h2>Text</h2>
<p> Text</p>
<p class="right"><a href="#">Continue Reading »</a></p>
</figcaption>
</figure>
<figure id="slide-5"><a class="view" href="#"><img src="images/demo/slider/5.png" alt=""></a>
<figcaption>
<h2>Text</h2>
<p>Text</p>
<p class="right"><a href="#">Continue Reading »</a></p>
</figcaption>
</figure>
<ul id="slide-tabs">
<li><a href="#slide-1">Text</a></li>
<li><a href="#slide-2">Text<br>Text.</a></li>
<li><a href="#slide-3">Text<br> Text</a></li>
<li><a href="#slide-4">Text?<br>Text</a></li>
<li><a href="#slide-5">Text?<br> Text</a></li>
</ul>
</div>
here my failed attempt by javascript slideshow.js
var slideimages = new Array()
slideimages[0] = new Image()
slideimages[0].src = "1.png"
slideimages[1] = new Image()
slideimages[1].src = "2.png"
slideimages[2] = new Image()
slideimages[2].src = "3.png"
slideimages[3] = new Image()
slideimages[3].src = "4.png"
slideimages[4] = new Image()
slideimages[4].src = "5.png"
var step=0
function slideit(){
if (!document.images)
return
document.getElementById('slide').src = slideimages[step].src
if (step<2)
step++
else
step=0
setTimeout("slideit()",2500)
}
slideit()
The pics in the same folder of the .js file
Thank you in advance
答案 0 :(得分:0)
jQuery Option:
function startSlides(start, end, delay) {
setTimeout(slideshow(start,start,end, delay), delay);
}
function slideshow(frame, start, end, delay) {
return (function() {
$('#slideshow' + frame).fadeOut();
if (frame == end) { frame = start; } else { frame += 1; }
setTimeout(function(){$('#slideshow' + frame ).fadeIn();}, 850);
setTimeout(slideshow(frame, start, end, delay), delay + 850);
})
}
// usage: startSlides(first frame, end frame, delay time);
startSlides(1, 4, 5000);
And.. another jQuery Option:
$(function () {
$("img").hide();
$("img").first().show();
$("img").click(function () {
$(this).hide();
if ($(this).next().length === 0) {
$("img").first().show();
} else {
$(this).next().show();
}
});
});
And the #1. CSS3 Option!
.items {
width:999px;
-webkit-animation: hscroll 12s infinite;
-moz-animation: hscroll 12s infinite;
-ms-animation: hscroll 12s infinite;
}
@-webkit-keyframes hscroll {
0% { margin-left: 0; }
27.33% { margin-left: 0 }
33.33% { margin-left: -333px; }
60.66% { margin-left: -333px; }
66.66% { margin-left: -666px; }
94.99% { margin-left: -666px; }
100% { margin-left: 0 }
}
@-moz-keyframes hscroll {
0% { margin-left: 0; }
27.33% { margin-left: 0 }
33.33% { margin-left: -333px; }
60.66% { margin-left: -333px; }
66.66% { margin-left: -666px; }
94.99% { margin-left: -666px; }
100% { margin-left: 0 }
}
@-ms-keyframes hscroll {
0% { margin-left: 0; }
27.33% { margin-left: 0 }
33.33% { margin-left: -333px; }
60.66% { margin-left: -333px; }
66.66% { margin-left: -666px; }
94.99% { margin-left: -666px; }
100% { margin-left: 0 }
}