Home > Web Front-end > JS Tutorial > body text

Image rotation effect implementation code (click the button to stop execution)_javascript skills

WBOY
Release: 2016-05-16 17:37:23
Original
1277 people have browsed it

In this small program, you need to set the naming of the pictures in the images folder to be in order, 1, 2, 3...

Copy code The code is as follows:







var imgnumb = 1;
function imgfor() {
imgnumb ;
document.getElementById('img1').setAttribute('src', 'images/' imgnumb '.jpg');
if (imgnumb == 5) {
imgnumb = 0;
}
}
var clearid;
function clearfun() {
clearInterval(clearid);
}
clearid=setInterval(imgfor, 500);






Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template