1

我需要一个最初没有动画的元素,然后在悬停时动画到不同的状态(一次,没有循环),在悬停后它应该动画回到原来的状态。

基本上就像你用:hoverstyle 和transition.

有没有办法通过 CSS3 动画实现这一点?

这是我当前的用例:http: //jsfiddle.net/yjD73/11/

在悬停时,元素会从 opacity: 0 淡化到 opacity: 1 并返回。这是我认为过渡不可能做到的。

编辑:按照这里的要求,来自 jsfiddle 的确切代码

一个div有四个图像

<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,我创建了一个 JSFiddle,它可以通过 css3 动画复制您想要的大部分内容。

这里是。

在 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 回答