解答例

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"> 
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
	$(document).mousemove(function(e){
		$("img").css({
			position:"absolute",
			top:e.clientY,
			left:e.clientX
		});
	});
});
</script>
<style>
img{
	margin-left:-100px;
	margin-top:-100px;
}
</style>
</head>
<body>
<img src="img/image1.png">
</body>
</html>

inserted by FC2 system