あるオブジェクトにカーソルを合わせると、別のオブジェクトでアニメーションが起動する CSS3 キーフレーム アニメーションを使用しようとしています。今、私は単純なキーフレームを持っています:
@keyframes fill
{
from {background: red; height: 0px; width: 0px;;}
to {background: green; height: 150px; width: 150px;}
}
@-moz-keyframes fill /* Firefox */
{
from {background: red; height: 0px; width: 0px;}
to {background: green; height: 150px; width: 150px;}
}
@-webkit-keyframes fill /* Safari and Chrome */
{
from {background: red; height:0px; width:0px;}
to {background: green; height: 150px; width: 150px;}
}
また、html は次のとおりです。
<div class="box1">
<div class="box2"></div>
</div>
スタイルシートでアニメーション プロパティを .box1 に適用すると、実際に .box2 をアニメーション化できますか?