Files
sam-kd/t.php
hskwon aca1767eb9 초기 커밋: 5130 레거시 시스템
- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경
- DB 연결 하드코딩 → .env 기반으로 변경
- MySQL strict mode DATE 오류 수정
2025-12-10 20:14:31 +09:00

47 lines
832 B
PHP

<!-- canvas 선언 ( 크기를 미리 정해야 한다 ) -->
<!DOCTYPE HTML>
<html>
<body>
<canvas id ="canvas" width=500 height=500 ></canvas>
<input type="button" id="hw" value="Hello world" />
</body>
</html>
<script>
window.onload = function(){
var hw = document.getElementById('hw');
hw.addEventListener('click', function(){
//alert('Hello world');
draw();
var p = new Path2D('M10 10 h 80 v 80 h -80 Z');
})
}
function draw() {
var canvas = document.getElementById('canvas');
if (canvas.getContext) {
var ctx = canvas.getContext('2d');
var rectangle = new Path2D();
rectangle.rect(10, 10, 50, 50);
var circle = new Path2D();
circle.moveTo(125, 35);
circle.arc(100, 35, 25, 0, 2 * Math.PI);
ctx.stroke(rectangle);
ctx.fill(circle);
}
}
</script>