web-dev-qa-db-ja.com

スムーズな結果でCSSバックグラウンド位置をアニメーション化(サブピクセルアニメーション)

Divの背景の位置をゆっくりとアニメーション化しようとしていますが、動きがぎくしゃくしていません。ここで私の現在の努力の結果を見ることができます:

http://jsfiddle.net/5pVr4/2/

@-webkit-keyframes MOVE-BG {
    from {
        background-position: 0% 0%
    }
    to { 
        background-position: 187% 0%
    }
}

#content {
    width: 100%;
    height: 300px;
    background: url(http://www.gstatic.com/webp/gallery/1.jpg) 0% 0% repeat;
    text-align: center;
    font-size: 26px;
    color: #000;

    -webkit-animation-name: MOVE-BG;
    -webkit-animation-duration: 100s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}

私は何時間もこれに取り組んできましたが、サブピクセルレベルでゆっくりとスムーズにアニメーション化するものを見つけることができません。私の現在の例は、このページのサンプルコードから作成されました。 http://css-tricks.com/parallax-background-css3/

私が求めているアニメーションの滑らかさは、このページのtranslate()の例で見ることができます。

http://css-tricks.com/tale-of-animation-performance/

Background-positionで実行できない場合、複数のdivで繰り返し背景を偽装し、translateを使用してそれらのdivを移動する方法はありますか?

20
Jayden Lawson

この例をチェックしてください:

http://jsfiddle.net/5pVr4/4/

<div id="content">Foreground content
  <div class="bg"></div>
</div>

@-webkit-keyframes MOVE-BG {
   from {
     -webkit-transform: translateX(0);
   }
   to { 
     -webkit-transform: translateX(-187%);
   }
}

#content {
  height: 300px;
  text-align: center;
  font-size: 26px;
  color: #000;
  position:relative;
}

.bg{
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: url(http://www.gstatic.com/webp/gallery/1.jpg) 0% 0% repeat;

  -webkit-animation-name: MOVE-BG;
  -webkit-animation-duration: 100s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}
24
Slawa Eremkin

バックグラウンド位置をアニメーション化すると、パフォーマンスの問題が発生します。ブラウザは、変換を含め、変換プロパティを非常に安価にアニメーション化します。

無限のスライドアニメーションに変換を使用した例を次に示します(プレフィックスなし)。

http://jsfiddle.net/brunomuller/5pVr4/504/

@-webkit-keyframes bg-slide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.wrapper {
    position:relative;
    width:400px;
    height: 300px;
    overflow:hidden;
}

.content {
    position: relative;
    text-align: center;
    font-size: 26px;
    color: #000;
}

.bg {
    width: 200%;
    background: url(http://www.gstatic.com/webp/gallery/1.jpg) repeat-x;
    position:absolute;
    top: 0;
    bottom: 0;
    left: 0;
    animation: bg-slide 20s linear infinite;
}
4
Bruno Muller

HTMLとCSSを少し調整する必要があります

ワーキングデモ

HTML

<div id="wrapper">
    <div id="page">
    Foreground content
</div>

<div id="content"> </div>
</div>

[〜#〜] css [〜#〜]

@-webkit-keyframes MOVE-BG {
    from { left: 0; }
    to { left: -2000px; }
}

#wrapper {
    position:relative;
    width:800px;
    height: 300px;
    overflow:hidden;
}

#page {
    text-align: center;
    font-size: 26px;
    color: #000;
}

#content {
    width: 2000px;
    height: 300px;
    background: url(http://www.gstatic.com/webp/gallery/1.jpg) 0% 0% repeat;
    position:absolute;
    top: 0;
    left: 0;
    z-index:-1;
    -webkit-animation-name: MOVE-BG;
    -webkit-animation-duration: 100s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
}
2
Surjith S M