ここで除算 #about を取得しました:
<div id="about" onMouseOver="document.getElementById('screen').style.top=60" onMouseOut="document.getElementById('screen').style.top=0"></div>
マウスがこれに乗ったときに別の分割座標を変更したい.最初は完璧に機能したが、今は移動したくtop
ないbackground
。
影響を与えたい部門は次のとおりです。
<div id="screen">
<a id="msg"></a>
</div>
そしてそれのスタイル:
#screen
{
height:25px;
width:500px;
position:absolute;
top:0;left:0;right:0;bottom:0;
margin:auto;
border-style:solid;
border-radius:10px;
text-align:center;
font-style:italic;
opacity:0;
background-image:url("http://www.psdgraphics.com/file/light-wooden-background.jpg");
transition:opacity 1s, top 0.4s;
}
ありがとうございました。