※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
<html> <head> <script type="text/javascript"> <!-- var mousedown = false; function initial(){ var target = document.getElementById("target"); target.style.background = "red"; target.style.position = "absolute"; target.style.width = "100px"; target.style.height = "100px"; target.style.top = "100px"; target.style.left = "100px"; } function doDown(){ mousedown = true; } function doUp(){ mousedown = false; } function doMove(event){ if (mousedown){ var w = event.clientX; var h = event.clientY; var target = document.getElementById("target"); target.style.left = w - 50; target.style.top = h - 50; } } //--> </script> </head> <body onload="initial();"> <H1>TEST.</H1> <div id="target" onmousedown="doDown();" onmouseup="doUp();" onmousemove="doMove(event);">※位置・大きさの変更</div> </body> </html>
<< 前へ | 次へ >> |