1

http://codepen.io/samaxes/pen/KbCHiで、パイ タ​​イマーを使用してペンをセットアップしました。

ただし、反復回数の最後のフレーム (この例では 0.9) でアニメーションを停止する方法がわかりません。

次の CSS プロパティを追加します。

-webkit-animation-fill-mode: forwards;

修正しません。

4

1 に答える 1

0

あなたは本当にできません。ただし、アニメーション化されたオブジェクトを最終的に希望する状態に設定すると、探している効果を比較的簡単に得ることができます。

.wrapper {
  position: relative;
  margin: 40px auto;
  background: #d5d5d5;
  border-radius: 50%;
}

@mixin timer($item, $duration, $size, $color, $end, $hover: pause) {
  #{$item}, #{$item} * { @include box-sizing(border-box); }

  #{$item} { 
    width: $size;
    height: $size;
  }

  #{$item} .pie {
    width: 50%;
    height: 100%;
    transform-origin: 100% 50%;
    position: absolute;
    background: $color;
  }

  #{$item} .spinner {
    border-radius: 100% 0 0 100% / 50% 0 0 50%;
    z-index: 200;
    transform: rotate(360deg*.9);
    animation: rota $duration + s linear $end;
  }

  #{$item}:hover .spinner,
  #{$item}:hover .filler, 
  #{$item}:hover .mask {
    animation-play-state: $hover;
  }

  #{$item} .filler {
    border-radius: 0 100% 100% 0 / 0 50% 50% 0; 
    left: 50%;
    opacity: 1;
    z-index: 100;
    animation: opa $duration + s steps(1,end) $end reverse;
  }

  #{$item} .mask {
    border-radius: 100% 0 0 100% / 50% 0 0 50%;
    width: 50%;
    height: 100%;
    position: absolute;
    background: inherit;
    z-index: 300;
    opacity: 0;
    animation: opa $duration + s steps(1,end) $end;
  }

  @keyframes rota {
    0% { transform: rotate(0deg); }
    90% { transform: rotate(360deg*.9); }
  }

  @keyframes opa {
    0% { opacity: 1; }
    50%, 100% { opacity: 0; }
  }
}

@include timer('.wrapper', 5, 250px, #6c6, 0.9);

デモ

于 2013-03-27T02:52:07.263 に答える