1

最初はアニメーションがなく、ホバーすると別の状態にアニメーション化され(1回、ループなし)、ホバーがなくなった後、アニメーション化して元の状態に戻る要素が必要です。

基本的には、:hoverスタイルとtransition.

CSS3アニメーションでそれを達成する方法はありますか?

これは私の現在のユースケースです: http://jsfiddle.net/yjD73/11/

ホバーすると、要素は opacity: 0 から opacity: 1 にフェードし、その逆になります。これは、トランジションでは不可能だと思います。

編集:ここで要求されたように、jsfiddle からの正確なコード

a div4 つの画像

<div class="zoombox">
    <img src="http://maps.googleapis.com/maps/api/staticmap?sensor=false&size=300x300&maptype=hybrid&zoom=4&center=51.561998,-1.605100">
    <img src="http://maps.googleapis.com/maps/api/staticmap?sensor=false&size=300x300&maptype=hybrid&zoom=7&center=51.561998,-1.605100">
    <img src="http://maps.googleapis.com/maps/api/staticmap?sensor=false&size=300x300&maptype=hybrid&zoom=12&center=51.561998,-1.605100">
    <img src="http://maps.googleapis.com/maps/api/staticmap?sensor=false&size=300x300&maptype=hybrid&zoom=16&center=51.562606,-1.605100">
</div>

互いに積み重ねられた画像とホバー時の単純なCSSアニメーション

.zoombox {
  position: relative;
  margin: 50px;
  float: left;
}

/* initial state */
.zoombox img:not(:first-child) {
  position: absolute;
  top: 0;
  opacity: 0;
}

/* On hover in */
.zoombox:hover img:nth-child(1) {
  -webkit-animation: first-in 400ms 0ms 1 normal ease-in both;
}

.zoombox:hover img:nth-child(2) {
  -webkit-animation: middle-in 1600ms 0ms 1 linear both;
}

.zoombox:hover img:nth-child(3) {
  -webkit-animation: middle-in 1600ms 1200ms 1 linear both;
}

.zoombox:hover img:nth-child(4) {
  -webkit-animation: last-in 400ms 2400ms 1 linear both;
}

@-webkit-keyframes first-in {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes middle-in {
  0% {
    -webkit-transform: scale(0.5);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes last-in {
  0% {
    -webkit-transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
4

1 に答える 1

1

Conic さん、css3 アニメーションで必要なもののほとんどを複製する JSFiddle を作成しました。

ここにあります。

これをすべて CSS で可能にするコードは次のとおりです。

@-webkit-keyframes changeImage {
  0%  {background: url("http://maps.googleapis.com/maps/api/staticmap?sensor=false&size=300x300&maptype=hybrid&zoom=4&center=51.561998,-1.605100");}
  33%  {background: url("http://maps.googleapis.com/maps/api/staticmap?sensor=false&size=300x300&maptype=hybrid&zoom=7&center=51.561998,-1.605100");}
  67%  {background: url("http://maps.googleapis.com/maps/api/staticmap?sensor=false&size=300x300&maptype=hybrid&zoom=12&center=51.561998,-1.605100");}
  100% {background: url("http://maps.googleapis.com/maps/api/staticmap?sensor=false&size=300x300&maptype=hybrid&zoom=16&center=51.562606,-1.605100");}
}

現在、jsfiddle はホバー時にアニメーションを介して画像を実行し、元の画像に戻ります。以上のことが必要な場合はお知らせください。ちなみに、ホバー状態の可能性がないため、これはどのタッチ デバイスでも機能しません。

于 2013-01-12T22:10:18.960 に答える