こんにちは、私は現在取り組んでいるサイトの簡単なロールオーバー画像を試しています。 firefoxでエフェクトをテストすると、マウスオーバーエフェクトはWebページ上の他の要素を移動します。どのようにこれを修正するための任意の提案?ロールオーバー画像
<head>
<script type="text/javascript">
if (document.images) {
img1 = new Image();
img1.src = "training2.png";
} </script></head>
<body>
<script type="text/javascript">
function rollover(name, filename)
{
var fullpath = '' + filename;
document.images[name].src = fullpath; }
</script>
<div id="trainingbutton"><a href="#" onmouseover="rollover('button1','training2.png');" onmouseout="rollover('button1','training.png')">
<img src="training.png" name="button1" border="0" alt="training" /></a></div></body>
同じ解像度の画像を使用していますか? – hjpotter92