blob: d6eef7c99dce2dbe338fe1e0a98a4da95e6fab5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html>
<head>
<script>
function start() {
canvas = document.getElementById('canvas')
context = canvas.getContext('2d')
canvas.setAttribute('x', 800)
setTimeout(function() {
context.fillText('i', 158, 156, 206)
}, 0)
context.setTransform(0, 1, 19, 1, 0.0989504886744, 0)
}
document.addEventListener('DOMContentLoaded', start)
</script>
</head>
<body>
<canvas id='canvas'></canvas>
</body>
</html>
|