I tried to display different images randomly one by one by changing the src of the img tag.
<img src="dravid-young.jpg" width="350" height="460">
<script type="text/javascript">
var a= new Array ("dravid-childhood.jpg", "dravid-young.jpg", "Jellyfish.jpg", "Tulips.jpg" , "Lighthouse.jpg" , "Penguins.jpg");
$(document).ready(function(){
var rand = a[Math.floor(Math.random()*a.length)];
changeimage(a[Math.floor(Math.random()*a.length)]);
});
function changeimage(imag)
{
$("img").attr("src",imag);
setTimeout(changeimage(a[Math.floor(Math.random()*a.length)]), 5000);
}
</script>
But it looks like created an infinite loop, the page keep on loading!!
I tried to display different images randomly one by one by changing the src of the img tag.
<img src="dravid-young.jpg" width="350" height="460">
<script type="text/javascript">
var a= new Array ("dravid-childhood.jpg", "dravid-young.jpg", "Jellyfish.jpg", "Tulips.jpg" , "Lighthouse.jpg" , "Penguins.jpg");
$(document).ready(function(){
var rand = a[Math.floor(Math.random()*a.length)];
changeimage(a[Math.floor(Math.random()*a.length)]);
});
function changeimage(imag)
{
$("img").attr("src",imag);
setTimeout(changeimage(a[Math.floor(Math.random()*a.length)]), 5000);
}
</script>
But it looks like created an infinite loop, the page keep on loading!!
Share Improve this question edited Oct 14, 2013 at 15:58 Barmar 783k57 gold badges548 silver badges660 bronze badges asked Oct 14, 2013 at 15:55 rajuraju 1291 gold badge2 silver badges8 bronze badges 5-
7
... because you're calling
changeimage
each time in thesetTimeout
– Eric Hotinger Commented Oct 14, 2013 at 15:57 -
1
Your
changeimage
function unconditionally callschangeimage
-- what did you expect? Your code doesn't actually callsetTimeout
untilchangeimage
returns -- which it never does. – David Schwartz Commented Oct 14, 2013 at 15:58 - Not to mention that you're trying to pick a random image index 3 times in your code when it's only required once – Basic Commented Oct 14, 2013 at 15:58
- What do you mean by : "the page keep on loading" ? – Brewal Commented Oct 14, 2013 at 15:59
- You are doing a recursion! – Daniele Vrut Commented Oct 14, 2013 at 15:59
3 Answers
Reset to default 8Pass a function that invokes your function instead of invoking your function directly.
setTimeout(function() {
changeimage(a[Math.floor(Math.random()*a.length)]);
}, 5000);
You were invoking changeimage
immediately, which does an immediate recursion instead of waiting.
By passing a function which invokes changeimage
, it will wait for 5000ms
before invoking it.
To be clear, I was just replacing the erroneous code above. The rest should stay in place. Here's the final example.
function changeimage(imag) {
$("img").attr("src",imag);
setTimeout(function() {
changeimage(a[Math.floor(Math.random()*a.length)]);
}, 5000);
}
When you call a function from within the same function it creates a loop, and if you don't stop it, it's an infinite loop.
The problem is that you are calling changeimage in each changeimage call so you'll face a loop.
But you are executing a function each interval so you can use a setInterval
https://developer.mozilla/en-US/docs/Web/API/Window.setInterval
Like:
var a = new Array("http://placehold.it/200x200", "http://placehold.it/500x500", "http://placehold.it/300x300", "http://placehold.it/400x400", "http://placehold.it/300x300", "http://placehold.it/200x200");
var intervalID = window.setInterval(changeimage, 1000);
function changeimage() {
$("img").prop("src", a[Math.floor(Math.random() * a.length)]);
console.log($("img").prop("src"))
}
Demo: http://jsfiddle/IrvinDominin/Xggb5/2/