> 웹 프론트엔드 > H5 튜토리얼 > HTML5 튀는 공 샘플 code_html5 튜토리얼 기술

HTML5 튀는 공 샘플 code_html5 튜토리얼 기술

WBOY
풀어 주다: 2016-05-16 15:49:02
원래의
1643명이 탐색했습니다.
 

复代码
代码如下:


<머리>

跳跳球
<스크립트>
//상자
var box_x=0;
var box_y=0;
var box_width=300;
var box_height=300;
//注의미:정의중앙심
var ball_x=10;
var ball_y=10;
var ball_radius=10;
var ball_vx=5;
var ball_vy=3;
var box_bound_left=box_x ball_radius;
var box_bound_right=box_x box_width-ball_radius;
var box_bound_top=box_y ball_radius;
var box_bound_bottom=box_y box_height-ball_radius;
//공
//컨텍스트
var ctx;
함수 init()
{
ctx=document.getElementById('canvas').getContext('2d');
ctx.lineWidth=ball_radius;
ctx.fillStyle="rgb(200,0,50)";
move_ball();
setInterval(move_ball,100);//참고
}
function move_ball()
{
ctx.clearRect(box_x,box_y,box_width,box_height);
move_and_check();
ctx.beginPath();
ctx.arc(ball_x,ball_y,ball_radius,0,Math.PI*2,true);
ctx.fill();
ctx.StrokeRect(box_x,box_y,box_width,box_height);
}
function move_and_check()
{
var cur_ball_x=ball_x ball_vx;
var cur_ball_y=ball_y ball_vy;
if(cur_ball_x{
ball_vx=-ball_vx;
cur_ball_x=box_bound_left;
}
if(cur_ball_x>box_bound_right)
{
ball_vx=-ball_vx;
cur_ball_x=box_bound_right;
}
if(cur_ball_y{
ball_vy=-ball_vy;
cur_ball_y=box_bound_top;
}
if(cur_ball_y>box_bound_bottom)
{
ball_vy=-ball_vy;
cur_ball_y=box_bound_bottom;
}
ball_x=cur_ball_x;
ball_y=cur_ball_y;
}






관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿