HTML5 캔버스 translate()

Jmnote (토론 | 기여)님의 2015년 11월 2일 (월) 00:53 판 (새 문서: ==개요== ;HTML canvas translate() Method ;HTML 캔버스 translate() 메소드 ==예시== <source lang='html5'> <canvas id='myCanvas' width='100', height='100'></canvas> <script> v...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

HTML canvas translate() Method
HTML 캔버스 translate() 메소드

2 예시

<canvas id='myCanvas' width='100', height='100'></canvas>
<script>
var ctx = document.getElementById('myCanvas').getContext('2d');
ctx.fillRect(0,0,50,50);
ctx.translate(25,25);
ctx.fillStyle='red';
ctx.fillRect(0,0,50,50);
</script>

3 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}