https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Using_CSS_transitionsを読みました。
以下に簡単な例を示します。
<div class="box"></div>
およびCSS:
.box {
border-style: solid;
border-width: 1px;
display: block;
width: 100px;
height: 100px;
background-color: #0000FF;
-moz-transition:width 2s, height 2s, background-color 2s, -moz-transform 2s;
-webkit-transition:width 2s, height 2s, background-color 2s, -webkit-transform 2s;
-o-transition:width 2s, height 2s, background-color 2s, -o-transform 2s;
transition:width 2s, height 2s, background-color 2s, transform 2s;
}
.box:hover {
background-color: #FFCCCC;
width:200px;
height:200px;
-moz-transform:rotate(180deg);
-webkit-transform:rotate(180deg);
-o-transform:rotate(180deg);
transform:rotate(180deg);
}
マウスを移動してボックスをホバーすると、.box
(初期状態) から.box:hover
(最終状態) への遷移など、期待どおりに遷移が実行されます。ただし、ボックスの外にマウスを移動すると、トランジションは逆に実行されます (例: から.box:hover
へ) .box
。
私の質問は、初期状態または最終状態で CSS トランジション プロパティを設定することですか? 仕様はこの問題を明確にしていますか?