web-dev-qa-db-ja.com

CSS3アニメーション位置

船が青いdivの上を移動するCSS3アニメーションを考えてみましょう。どういうわけか船は動いていません。 HTMLは次のとおりです。

<div id="wrapper">
  <div id="sea">
    <img src="ship.png" alt="ship" width="128" height="128"/>
  </div>
</div>

CSS3アニメーションを作成するために、私は以下を使用します。

#wrapper { position:relative;top:50px;width:700px;height:320px;
          margin:0 auto;background:white;border-radius:10px;}
#sea { position:relative;background:#2875DE;width:700px;height:170px;
       border-radius:10px;top:190px; }
#sea img { 
  position:relative;left:480px;top:-20px;
  animation:myship 10s;
  -moz-animation:myship 10s; /* Firefox */
  -webkit-animation:myship 10s; /* Safari and Chrome */
  @keyframes myship {
    from {left: 480px;} 
    to{left:20px;} 
   }
   @-moz-keyframes myship {
     from {left: 480px;} 
     to {left:20px;} 
   }
   @-webkit-keyframes myship {
     from {left: 480px;} 
     to{left:20px;} 
   }
}

船の画像は動いていません。どんな助けでも大歓迎です。

9
George

cssセレクターの外でキーフレームを宣言し、絶対位置の要素をアニメーション化する必要があります。

http://jsfiddle.net/aNvSf/

変更したCSSは次のようになります。

#wrapper{
    position:relative;
    top:50px;
    width:700px;
    height:320px;
    margin:0 auto;
    background:white;
    border-radius:10px;
}
#sea{
    position:relative;
    background:#2875DE;
    width:700px;
    height:170px;
    border-radius:10px;
    top:190px;
}
#sea img{
    position:absolute;
    left:480px;
    top:-20px;
    animation:myship 10s;
    -moz-animation:myship 10s; /* Firefox */
    -webkit-animation:myship 10s; /* Safari and Chrome */               
}

@keyframes myship{
    from {left: 480px;} 
    to{left:20px;} 
}
@-moz-keyframes myship{
    from {left: 480px;} 
    to{left:20px;} 
}
@-webkit-keyframes myship{
    from {left: 480px;} 
    to{left:20px;} 
}​
10
Thomas Jones

lefttopbottomまたはrightでアニメーション化するには、絶対位置または浮動要素のいずれかが必要です。だから、位置をabsoluteに変更します。

また、閉じられていない中括弧がありました}キーフレームの宣言を開始する前。

#sea img { 
    position:absolute;
    /* ... */
}

中括弧エラー:

    #sea img{
         position:absolute; /* absolute */
         left:480px;top:-20px;
         animation:myship 10s;
        -moz-animation:myship 10s; /* Firefox */
        -webkit-animation:myship 10s; /* Safari and Chrome */
    } 
 /* ^ You have to close the braces here, before declaring the keyframes.

これが機能しています デモ

2
Starx