gpt4 book ai didi

javascript - 如何在javascript中创建图像动画

转载 作者:行者123 更新时间:2023-11-30 11:14:06 25 4
gpt4 key购买 nike

我正在尝试创建一个图像动画,它通过单击 Start Animation 按钮开始,并且应该每半秒与另一张图片交替出现,直到我单击 Stop Animation 按钮.当我运行这段代码时,它没有输出任何东西。以下代码有什么问题?

我的编码:

<button onClick="StartAnimation()">
Start Animation
</button>

<button onClick="StopAnimation()">
Stop Animation
</button>

<script>
var counter;
var Schedule;
function StartAnimation(){
var images = document.getElementById("fish");
images.src="https://www.uow.edu.au/~dong/w3/assignment/a5/happy_fish.png";


Schedule = setInterval(animationfunction,5000);

}
function animationfunction(){
var fish_img = document.getElementById("fish");
fish_img.src = "https://www.uow.edu.au/~dong/w3/assignment/a5/sad_fish.png";
}
function StopAnimation(){
clearInterval(Schedule);
}

最佳答案

你错误地命名了你的函数 function StarAnimation(){ 应该是 function StartAnimation(){

关于javascript - 如何在javascript中创建图像动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52346390/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com