admin管理员组文章数量:1352175
I wrote an image slider script in javascript but the the problem is the slider function is running only one time . I want to run forever the slider function . I tried to loop the function with this code:
function abc(){ //Function for image slider
//Slider codes here
}
for(count = 0; count <= 6; count++){ //Forever loop
count = 0;
abc(); //Call the slider function
if(count == 0){
abc(); //Return call the function
}
}else{
}
Please tell me what was the prblem in my script ?
I wrote an image slider script in javascript but the the problem is the slider function is running only one time . I want to run forever the slider function . I tried to loop the function with this code:
function abc(){ //Function for image slider
//Slider codes here
}
for(count = 0; count <= 6; count++){ //Forever loop
count = 0;
abc(); //Call the slider function
if(count == 0){
abc(); //Return call the function
}
}else{
}
Please tell me what was the prblem in my script ?
Share Improve this question asked Dec 15, 2014 at 17:47 Gourab MazumderGourab Mazumder 311 silver badge3 bronze badges 1-
1
You can realize endless loop with:
while (true) {..}, for (;;) {..}, function a() { ... a() }
, but try to use timeouts, because such a loop is a massive performance issue – Ba5t14n Commented Dec 15, 2014 at 18:11
5 Answers
Reset to default 6setInterval
method.
From MDN:
https://developer.mozilla/en-US/docs/Web/API/WindowTimers.setInterval
Calls a function or executes a code snippet repeatedly, with a fixed time delay between each call to that function. Returns an intervalID.
For running a piece of code forever
while (true){
// code here to run forever
}
For running a function forever
function doForever(){
// code of function
}
while (true){
doForever();
}
You have to use the setInterval
function:
setInterval(function myFunction(){
//my function
}, 0);
1st method:
while (true) {
// code
}
2nd method:
function forever() {
// code
forever()
}
forever()
You can use a basic concept, "Recursion".
Calling a function by it-self.
function abc(){ //Function for image slider
//Slider codes here
abc();
}
You can use if conditions and exit from it when ever you want.
Just declare a
var i = 0;
if (i < 10) {
// Loop
} else {
exit(0);
}
本文标签: sliderhow do i forever run a function in javascriptStack Overflow
版权声明:本文标题:slider - how do i forever run a function in javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743909945a2560209.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论