以下は HTML キャンバスで行う方法で、マウスがどこにあるかを完全に検出します。ただし、それはあなたのものとまったく同じには見えず、アイコンや分割線を追加しませんでした(ただし、アンチエイリアスにより、領域間の背景が少し透けて見え、線が描かれているように見えます).
http://jsfiddle.net/jcubed111/xSajL/
編集 - バグ修正: http://jsfiddle.net/jcubed111/xSajL/2/
より多くの作業を行うことで、キャンバス バージョンをモックアップと同じように見せることができます。私のバージョンは、機能を下げるためだけのものです。
css を使用して適切に表示し、クリアをオーバーレイしてa
マウスの位置を検出し、リンク機能を提供することもできます。もちろん、 を使用:hover
して領域の外観を変更することはできません。
Chrome 19 のみでテストしました。
リンクがダウンした場合の完全なコードは次のとおりです。
HTML:
<a id='link'><canvas id='c' width='224' height='224' onmousemove="update(event);"></canvas></a>
<input id='i' />
CSS:
#c{
width:224px;
height:224px;
}
JS (ページの読み込み時に実行され、jquery を使用):
ctx = $('#c')[0].getContext('2d');
function update(E) {
ctx.clearRect(0, 0, 224, 224);
if (E === false) {
mx = 112;
my = 112;
} else {
mx = E.clientX;
my = E.clientY;
}
mangle = (-Math.atan2(mx-112, my-112)+Math.PI*2.5)%(Math.PI*2);
mradius = Math.sqrt(Math.pow(mx - 112, 2) + Math.pow(my - 112, 2));
$('#i').val("Not over any region");
$('#link').attr('href', '');
for (i = 0; i < 8; i++) {
angle = -Math.PI / 8 + i * (Math.PI / 4);
if (((mangle > angle && mangle < (angle + Math.PI / 4)) || (mangle > Math.PI*15/8 && i==0)) && mradius<=112 && mradius>=69) {
ctx.fillStyle="#5a5a5a";
$('#i').val("In region "+i);
$('#link').attr('href', '#'+i);
} else {
ctx.fillStyle="#4c4c4c";
}
ctx.beginPath();
ctx.moveTo(112, 112);
//ctx.lineTo(112+Math.cos(angle)*112, 112+Math.sin(angle)*112);
ctx.arc(112, 112, 112, angle, angle + Math.PI / 4, false);
ctx.lineTo(112, 112);
ctx.fill();
}
ctx.fillStyle = "#f2f2f2";
ctx.beginPath();
ctx.arc(112, 112, 69, 0, 2 * Math.PI, false);
ctx.fill();
}
update(false);