我使用VS asp.net工作在一個畫布風格的圖形界面。我想創建帶有單個事件的語音泡泡。例如 - 我的屏幕上的紅點,如果客戶點擊它,一個講話泡泡會顯示更多關於該事件的信息。
如何讓這些事件可以交互?
現在我是我米用一個簡單的帆布:
<canvas id="myCanvas" width="930" height="900"style="border:2px solid #000000;"></canvas>
// function to draw a circle - x,y, radius, color: coordinates, radius and the color of the circle.
function draw_circle(x, y, radius, color) {
ctx.beginPath();
ctx.arc(x, y, radius, 0, 2 * Math.PI, false);
ctx.fillStyle = color;
ctx.fill();
ctx.stroke();
}
// function to draw a triangle - x: Life event's x-coordinate on the timeline.
function draw_triangle(x) {
ctx.fillStyle = 'purple';
ctx.strokeStyle = 'white';
ctx.lineWidth = 1;
ctx.beginPath();
ctx.moveTo(x, 560);
ctx.lineTo(x+5, 550);
ctx.lineTo(x-5, 550);
ctx.lineTo(x, 560);
ctx.fill();
ctx.stroke();
ctx.closePath();
}
等。
我相信,讓這些事件 - 圈,棒線,三角形更交互與對話泡泡,我將不得不修改此代碼... 可以使這些JavaScript功能可交互? hoverover還是onclick?
我看着對話氣泡
http://www.scriptol.com/html5/canvas/speech-bubble.php
,但我想要的東西只與基於客戶端的鼠標點擊特定事件。只要。
我想是這樣的: -
http://simile-widgets.org/wiki/Timeline_CustomEventDetailDisplay
但適合我使用的代碼。
謝謝本。這是我昨天在做這件事時得出的結論。除了我一直在C#中創建類,然後使用它們在畫布上顯示對象 - 全部在C#結束。我在客戶端做的唯一事情就是捕獲onclick()函數,然後顯示語音氣泡。感謝您的回答。 :) – Philo