このアニメーションを最後の画像で停止させ、最後の画像の上に立たせるにはどうすればよいですか? このアニメーションを止めるのを手伝ってくれるかもしれません。
var myImages = [
"http://placekitten.com/200/200",
"http://placekitten.com/150/150",
"http://placekitten.com/180/180",
"http://placekitten.com/170/170",
"http://placekitten.com/140/150",
"http://placekitten.com/160/160"
];
var counter = 1; // Start at number 2 since the HTML tag has the first
function switchImage() {
$('#myImage').attr('src', myImages[counter]);
counter += 1;
if (counter == myImages.length) {
counter = 0;
}
}
$(document).ready(function() {
setInterval(switchImage, 5000);
});