私のサイトにはwidth: 100px to 800px
、ホバーしたときに始まるアニメーションがあります。
しかし、ホバーアウトすると、アニメーションなしで通常の位置に移動します。
アニメーションがホバーしたときと同じようにホバーアウトに戻るようにするにはどうすればよいですか?
トランジションのソリューションしか見つかりませんでしたが、アニメーションには必要です。
<div id="blackbox"/>
<div id="blacktxt">
Navigation
</div>
アニメーションの代わりにトランジションを使用しないのはなぜですか? ワーキングjsFiddle
#blackbox {
background: black;
width: 100px;
height: 80px;
color: white;
text-align: center;
font-family: Times;
font-size: 20px;
position: fixed;
left: 0px;
bottom: 100px;
opacity: 0.5;
margin-bottom: 10px;
transition: all 2s; /* Add this transition */
}
#blackbox:hover { /* Apply the new design on hover */
opacity: 0.8;
width: 800px;
}
#blacktxt {
margin-top: 10px;
height: 60px;
transition: opacity 0.5s, width 5s;
position: absolute;
font-family: cursive;
cursor: default;
}
#blacktxt:hover {
opacity: 0;
}