0
我試圖在鼠標懸停在城市時在我的丹麥地圖上設置信息。我試圖畫一個圓圈,但它不會顯示在我的地圖上(它出現在下面,沒有結束),我不確定是否可以設置事件。這是我第一次使用畫布。如何在畫圖上重疊畫布圓並設置座標和事件
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript">
function startCanvas() {
var c = document.getElementById("myCanvas");
var ctx = c.getContext("2d");
//draw a circle
ctx.beginPath();
ctx.arc(75, 75, 10, 0, Math.PI * 2, true);
ctx.closePath();
ctx.fill();
var image = new Image();
image.onload = function() {
ctx.drawImage(image, 69, 50);
};
image.src = 'denmark.jpg';
}
</script>
</head>
<body onload="startCanvas()">
<canvas id="myCanvas" width="600" height="600";">
Your browser does not support the HTML5 canvas tag.</canvas>
</body>
</html>
感謝那些幫助了很多 – 2013-02-14 06:00:49