22

我有一个使用背景颜色运行无限动画的链接。我想停止动画并在悬停时过渡到不同的背景颜色。

.startlink{
    background-color:#206a9e;
    color:#fff;
    border-radius:15px;
    font-family: 'Myriad Pro';
    -webkit-animation:changeColor 3.4s infinite;
    -webkit-transition:all 0.2s ease-in;
}

.startlink:hover{
    -webkit-animation-play-state: paused;
    background-color: #014a2a;
}

@-webkit-keyframes changeColor 
{
    0%   {background:#206a9e;}
    50%  {background:#012c4a;}
    100%   {background:#206a9e;}
}

为什么这段代码不起作用?还有其他方法可以完成这项工作吗?(最好没有Javascript)。

4

6 回答 6

21

试试-webkit-animation: 0;演示在这里0是默认值animation或必须设置以禁用任何现有的 CSS3 动画。

于 2013-04-12T04:24:38.820 回答
5

-webkit-animation-play-state:暂停和-webkit-animation-play-state:正在运行

于 2014-02-07T19:23:12.040 回答
1

找到了另一种方法来实现这一点。

编写另一个动画关键帧序列并在悬停时调用它。

.startlink{
background-color:#206a9e;
color:#fff;
border-radius:15px;
font-family: 'Myriad Pro';
-webkit-animation:changeColor 3.4s infinite;
-webkit-transition:all 0.2s ease-in;
}

.startlink:hover{
-webkit-animation:hoverColor infinite;
}

@-webkit-keyframes changeColor 
{
0%   {background:#206a9e;}
50%  {background:#012c4a;}
100%   {background:#206a9e;}
}
@-webkit-keyframes hoverColor 
{
background: #014a2a;
}
于 2013-04-12T04:28:33.247 回答
1

我有同样的问题,我找到的解决方案如下。

创建您想要的动画,并为您和每个元素分配一个不同的类。

然后使用 .mouseover().mouseenter() jQuery 事件在您分配给每个动画的类之间切换。

它类似于您用于汉堡菜单的内容,只是使用了不同的处理程序。

于 2016-04-05T00:03:33.760 回答
1

我试图实现同样的事情,在尝试动态更改关键帧等之后,我通过使用基本 css 找到了一个奇怪的解决方案,请参见fiddle here。它不是很优雅,但正是我(和你,我希望)想要的。

#menu, #yellow{
  position: fixed;
  top: 2.5vw;
  right: 2.5%;
  height: 25px;
  width: 25px;
  border-radius: 30px;
}

#menu{
  animation: blink 2s infinite;
	transition: 1s;
}

@keyframes blink{
  0% { background-color: grey; }
  50% { background-color: black; }
  100% { background-color: grey; }
}

#yellow{
	background-color: rgba(255, 0, 0, 0);
	transition: 1s;
}

#disque:hover #yellow{
	pointer-events: none;
	background-color: rgba(255, 0, 0, 1);
}

#disque:hover #menu{
	opacity: 0;
}
<div id="disque">
  <div id="menu"></div>
  <div id="yellow"></div>
</div>

于 2019-06-26T14:16:28.300 回答
0

对于那些对动画幻灯片感兴趣的人,在 2 个图像之间停止

var NumImg = 1; //Img Number to show
var MaxImg = 3; //How many Img in directory ( named 1.jpg,2.jpg ...)

function AnimFond() {
  NumImg = NumImg> MaxImg ? 1 : NumImg +=1;
  var MyImage = "http://startinbio.com/Lib/Images/Fond/" + NumImg + ".jpg";
  $("#ImgFond1").attr("src", MyImage);
  $("#ImgFond2").fadeOut(3000, function() {
    $("#ImgFond2").attr("src", MyImage);
    $("#ImgFond2").fadeIn(1);
  });
}

setInterval("AnimFond()", 10000); //delay between 2 img
#AnimFond {
  position: fixed;
  height: 100%;
  width: 100%;
  margin: 0 0 0 -8;
}

#AnimFond img {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.2.3/jquery.min.js"></script>
<div id="AnimFond">
  <img id="ImgFond1" src="http://startinbio.com/Lib/Images/Fond/1.jpg" />
  <img id="ImgFond2" src="http://startinbio.com/Lib/Images/Fond/1.jpg" />
</div>

于 2018-05-23T09:11:46.187 回答