SoFunction
Updated on 2025-04-03

js implement image rotation effect code


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:///TR/xhtml1/DTD/">
<html xmlns="http:///1999/xhtml">
<head>
<title></title>
<script type="text/javascript">
var numb = 0;
var imgnumb = 1;
function showimg() {
//Switching method for two pictures 1 /*numb++;
if (numb % 2 == 0) {
('img1').setAttribute('src', 'images/');
}
else {
('img1').setAttribute('src', 'images/');
}*/
//Two pictures switching method 2 /*if (numb == 0) {
('img1').setAttribute('src', 'images/');
numb = 1;
}
else {
('img1').setAttribute('src', 'images/');
numb = 0;
}*/
}
/Picture rotation/multiple function imgfor() {
imgnumb++;
('img1').setAttribute('src', 'images/' + imgnumb + '.jpg');
if (imgnumb == 9) {
imgnumb = 0;
}
}
var clearid;
function clearfun() {
clearInterval(clearid);
}
clearid=setInterval(imgfor, 1000);
</script>
</head>
<body>
<img alt="" class="style1" src="images/" width="500px" height="500px" />
<input type="button" value="Two pictures toggle" onclick="showimg();" />
<br />
<input type="button" value="multiple image rotation" onclick="imgfor();;" />
<br />
<input type="button" value="end execution" onclick="clearfun();" />
</body>
</html>