2

divを別の後方にスライドさせたいのですが、ヒントがわかりませんか?アニメーションを作成することはできますが、アニメーションの上にマウスを置くと正しく機能しない場合、誰かが理由を説明できますか?

<!DOCTYPE html>
<html>
<head>
<style>
.fundo_main {
    width:200px;
    height:200px;
    background-color:red;
    position:relative;
}
.fundo_main:hover {
    width:200px;
    height:200px;
    -webkit-animation-name:myfirst;
    position:relative;
}
.fundo {
    width:200px;
    height:200px;
    background-color:red;
    position:relative;
    -webkit-animation-name:myfirst;
}

.fundo:hover {
    width:200px;
    height:200px;
    background-color:blue;
    -webkit-animation-name:myfirst;
    -webkit-animation-duration:.3s;
    -webkit-animation-timing-function:linear;
    -webkit-animation-direction:left;

}
@-webkit-keyframes myfirst {
    0% { width:0px; }
    65% { width: 150px;}    
    100% { width:200px; }
}
</style>
</head>
<body>
<div class="fundo_main">
    <div class="fundo"></div>
</div>
</body>
</html>
4

1 に答える 1

0

私はこれを変更すると言います:

.fundo:hover

これに:

.fundo_main:hover .fundo
于 2013-01-20T17:08:48.853 に答える