canvas绘制弹跳小球_html/css_WEB-ITnose

php中文网
发布: 2016-06-24 11:46:58
原创
1403人浏览过

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>canvas多弹跳小球</title></head><body><input type="button" id="clbtn" value="清除画布" style="border:1px solid #444;display:block;margin: 10px auto;" /><canvas id="canvas" style="border:1px solid #444;display:block;margin: 10px auto;"></canvas></body><script>window.onload=function(){    var clbtn=document.getElementById("clbtn");    var canvas=document.getElementById("canvas");    var cxt=canvas.getContext("2d");    canvas.width=1000;    canvas.height=500;    function ball(x,y,vx,colorindex){        this.x=x;        this.y=y;        this.r=20;        this.g=2;        this.vx=vx;        this.vy=-20;        this.colorindex=colorindex;        this.color=['red','blue','green','orange','yellow','pink'];    };    var balls=[];    //    context.arc(centerx,centery,radius,startingAngle,endingAngle,anticlockwise=flase)//                  圆心坐标    ,半径值   ,开始角度    ,结束角度,    顺逆时针(默认flase顺时针)    canvas.onmousedown=function(){        canvas.onmousemove=function(e){            var e= event || ev;            var x = e.clientX-canvas.offsetLeft;            var y = e.clientY-canvas.offsetTop+document.body.scrollTop;                        balls.push(new ball(x,y,Math.floor(Math.random()*50-5),Math.floor(Math.random()*6+1)));                }        };    canvas.onmouseup=function(){        canvas.onmousemove=null;        };    setInterval(function(){        cxt.clearRect(0,0,cxt.canvas.width,cxt.canvas.height);//清除画布20帧        for(var i = 0 ;i<balls.length;i++)        {            balls[i].x += balls[i].vx;            balls[i].y += balls[i].vy;            balls[i].vy += balls[i].g;            cxt.beginPath();            cxt.arc(balls[i].x,balls[i].y,balls[i].r,0,2*Math.PI);            cxt.closePath();            cxt.fillStyle=balls[i].color[balls[i].colorindex];            cxt.fill();            cxt.strokeStyle='white';            cxt.stroke();            document.title = balls.length;                        if(  balls[i].y>=500 -  balls[i].r)            {                 balls[i].y = 500 -  balls[i].r;                 balls[i].vy = - balls[i].vy*0.7;            }            if(  balls[i].x>=1000 -  balls[i].r || balls[i].x<=0-  balls[i].r)            {                                 balls[i].vx = - balls[i].vx*0.7;            }        };                },50);clbtn.onclick=function(){        cxt.clearRect(0,0,cxt.canvas.width,cxt.canvas.height);        balls.splice(0,balls.length);//清空数组         };}</script></html>
登录后复制

canvas绘制弹跳小球。

Chatbase
Chatbase

从你的知识库中构建一个AI聊天机器人

Chatbase 117
查看详情 Chatbase

HTML速学教程(入门课程)
HTML速学教程(入门课程)

HTML怎么学习?HTML怎么入门?HTML在哪学?HTML怎么学才快?不用担心,这里为大家提供了HTML速学教程(入门课程),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号