原生javascript实现匀速运动动画效果

作者:lijiao 时间:2024-06-07 15:27:55 

本文向大家介绍一个javascript实现的动画。点击开始按钮div会往右移动,点击停止后,div停止移动,再点击则继续移动。请看下面代码:


<html>
<head>
<meta charset="gb2312">
<head>
<title>javascript实现的简单动画</title>
<style type="text/css">
#mydiv
{
width:50px;
height:50px;
background-color:green;
position:absolute;
}
</style>
<script type="text/javascript">
window.onload=function()
{
var mydiv=document.getElementById("mydiv");
var start=document.getElementById("start");
var stopmove=document.getElementById("stopmove");
var x=0;
var flag;
function move()
{
 x=x+1;
 mydiv.style.left=x+"px";
}
start.onclick=function()
{
 clearInterval(flag);
 flag=setInterval(move,20);
}
stopmove.onclick=function()
{
 clearInterval(flag);
}

}
</script>
<body>
<input type="button" id="start" value="开始运动" />
<input type="button" id="stopmove" value="停止运动" />
<div id="mydiv"></div>
</body>
</html>

效果图:

原生javascript实现匀速运动动画效果

标签:javascript,匀速运动
0
投稿

猜你喜欢

  • Python中的xlrd模块使用原理解析

    2021-07-24 14:25:21
  • Mysql 相邻两行记录某列的差值方法

    2024-01-18 22:29:14
  • Python使用Matplotlib绘制甘特图的实践

    2021-04-06 03:16:56
  • python将三维数组展开成二维数组的实现

    2023-01-07 06:34:30
  • C#中把FastReport.Net报表控件的数据保存到数据库

    2024-01-20 12:07:18
  • Python中使用Lambda函数的5种用法

    2022-07-13 17:07:35
  • MYSQL SERVER收缩日志文件实现方法

    2024-01-26 15:14:29
  • python轻松办公将100个Excel中符合条件的数据汇总到1个Excel里

    2021-08-12 03:17:11
  • PyCharm安装库numpy失败问题的详细解决方法

    2023-05-18 22:45:16
  • Vite创建项目的实现步骤

    2024-04-30 10:38:16
  • python3.7中安装paddleocr及paddlepaddle包的多种方法

    2022-08-11 00:00:57
  • 将ChatGPT接入微信实现智能回复功能

    2023-03-09 19:50:25
  • mysql 5.7.16 winx64安装配置方法图文教程

    2024-01-26 22:30:25
  • ASP实例:使用ASP生成图片彩色校验码

    2009-01-20 16:27:00
  • python rolling regression. 使用 Python 实现滚动回归操作

    2021-01-11 09:38:07
  • Django-silk性能测试工具安装及使用解析

    2023-12-08 08:53:19
  • Python模板的使用详细讲解

    2022-03-20 13:24:08
  • python数值基础知识浅析

    2021-12-10 07:07:49
  • 高效交换XML文档

    2008-01-03 14:16:00
  • 深入理解vue中的slot与slot-scope

    2024-05-05 09:07:18
  • asp之家 网络编程 m.aspxhome.com