ポインタの位置を調べる

ポインタの位置を調べるにはdpdX、dpdYプロパティの値を調べます。Wii では画面の中央が原点(0,0)になり画面の右端が1.0、左端が-1.0、上端が-1.0、下端が1.0になっています。画面外にポインタがはみだした場合でも値の取得は可能です。

サンプルコード [実行する]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Nintendo Wii JavaScript Sample</title>
<link rel="stylesheet" type="text/css" href="css/main.css" media="all">
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<h1>ポインタの位置を返す</h1>
<div id="result"></div>
</body>
</html>

window.onload = function(){
setInterval("check()", 100);
}
function check(){
var controller1 = window.opera.wiiremote.update(0);
document.getElementById("result").innerHTML = controller1.dpdX+"<br>"+controller1.dpdY;
}