私はHTMLとJavascriptを学んでいますが、私は何か間違っていると思われます。マウスでマウスを移動すると画像のサイズが変更されるはずです。私は物事をする方法を学ぶために調査中です。私のサイトのHTMLコードで動作しない単純なスクリプト
<!doctype html>
<html>
<head>
<title> Kikito's Sprites </title>
</head>
<body style="background-color:#ffc299">
<div>
<h1 style="color:white"> Kikito Loco Sprite Showcaserino </h1>
<img onmouseover="descriptiveTextImg(this)" onmouseout="normalImg(this)" src="monigoteTransparencia.png" alt="Amicable Anthony" style="position:absolute;top:100px;left:-50px;width:300px;height:300px;">
<img src="ballinBob.png" alt="Ballin Bob" style="position:absolute;top:90px;left:130px;width:300px;height:300px;">
<img src="severedArm.png" alt="just some pixel gore" style= "position:absolute;top:350px;left:-40px;width:300px;height:300px;">
<img src="shinySkin.png" alt="Shiny Skin" style="position:absolute;top:350px;left:200px;width:300px;height:300px;">
<img src="bigBall.png" alt="a cannonball" style= "position:absolute;top:640px;left:-40px;width:300px;height:300px;">
</div>
<script>
function descriptiveTextImg(x)
{
x.style.width = 400px;
x.style.height = 400px;
}
function normalImg(x)
{
x.style.width = 300px;
x.style.height = 300px;
}
</script>
</body>
</html>
ビューエラーのために使用JSコンソールの必要はありません。 – imbearr
ありがとう!私はそのことを知らなかった – KikePeris