09_Transform.html
Dosyayı İndir
<!DOCTYPE html>
<html>
<body>
<canvas id="mycanvas" width="300" height="240" style="border: 1px solid blue">
</canvas>
<script>
var mycanvas = document.getElementById('mycanvas');
var mycontext=mycanvas.getContext("2d");
mycontext.fillStyle = "#0000FF";
mycontext.fillRect(100,70,100,100);
mycontext.fillStyle = "#FF0000";
mycontext.translate(150,120);
mycontext.rotate(Math.PI/4);
mycontext.scale(0.5,0.5);
mycontext.translate(-150,-120);
mycontext.fillRect(100,70,100,100);
</script>
</body>
</html>
Dosyayı İndir