일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- katalon xpath
- CSTS 폭포수 모델
- 홈택스 해외주식 양도세
- katalon 사용법
- js 자동완성
- 재귀 예제
- katalon 비교
- katalon 자동화
- katalon
- 피보나치함수 예제
- tomcat log
- 해외주식 양도세 신고
- 재귀함수 예제
- 한국투자증권 해외주식 양도세
- git 연동
- java.sql.SQLSyntaxErrorException
- 톰캣 실시간 로그
- oracle group by
- 해외증권 양도세 한국투자증권
- 테스트 자동화
- 주식 양도세 신고방법
- 국세청 해외주식 양도세 신고방식
- 피보나치함수
- 최대공약수 예제
- 한국투자증권 양도세 신고
- 피보나치 예제
- javascript 자동완성
- Katalon Recorder 사용법
- recursion example
- bfs 미로탐색 java
- Today
- Total
엄지월드
HTML5 Canvas Tutorial for Beginners - Ep. 3 본문
HTML5 Canvas Tutorial for Beginners - Ep. 3
<body>
<canvas></canvas>
<script src="canvas.js" type="text/javascript">
</script>
</body>
var canvas = document.querySelector('canvas')
;
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
var c = canvas.getContext('2d');
function Circle(x, y, dx, dy, radius){
this.x = x;
this.y = y;
this.dx = dx;
this.dy = dy;
this.radius = radius;
this.draw = function(){
c.beginPath();
c.arc(this.x, this.y, this.radius, 0, Math.PI * 2, false);
c.strokeStyle = 'blue';
c.stroke(); // 화면에 그리는 작업
c.fill();
}
this.update = function(){
if ( this.x+this.radius > innerWidth || this.x - this.radius < 0){
this.dx = -this.dx;
}
if ( this.y+this.radius > innerHeight || this.y - this.radius < 0){
this.dy = -this.dy;
}
this.x += this.dx;
this.y += this.dy;
this.draw();
}
}
var circleArray = [];
for( var i = 0; i< 100; i++){
var radius = 30;
var x = Math.random() * (innerWidth - radius *2) + radius;
var y = Math.random() * (innerHeight - radius *2) + radius;
var dx = (Math.random() - 0.5) ;
var dy = (Math.random() - 0.5) ;
circleArray.push(new Circle(x, y, dx, dy, radius));
}
function animate(){
requestAnimationFrame(animate);
c.clearRect(0, 0, innerWidth, innerHeight)
for(var i = 0; i<circleArray.length; i++){
circleArray[i].update();
}
}
animate()
'Front' 카테고리의 다른 글
json 크기 구하기 (0) | 2018.11.19 |
---|---|
위로 / 아래로 가기 버튼 만들기 (0) | 2018.07.27 |
CSS(Cascading Style Sheets) (0) | 2018.04.07 |
HTML5 새로운 속성, 입력 값 체크 (0) | 2018.03.17 |
웹 페이지 모바일 폭 맞추기 (0) | 2018.03.17 |