我有一个运行带有背景颜色的无限动画的链接。我想停止动画并在悬停时转换为不同的背景颜色。
.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)。
答案 0 :(得分:17)
试试-webkit-animation: 0;
。 Demo here。 0
是animation
的默认值,或者必须设置为禁用任何现有CSS3动画的内容。
答案 1 :(得分:4)
-webkit-animation-play-state:暂停 和 -webkit-animation-play-state:running
答案 2 :(得分: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;
}
答案 3 :(得分:1)
我有同样的问题,我找到的解决方案如下。
创建所需的动画,并为每个元素分配一个不同的类。
然后使用.mouseover()或.mouseenter() jQuery事件在为每个动画分配的类之间切换。
它类似于您用于汉堡菜单的内容,只是使用不同的处理程序。
答案 4 :(得分: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>
答案 5 :(得分:0)
我试图实现相同的目的,并且在尝试动态更改关键帧等之后,通过使用基本的CSS找到了一个怪异的解决方案,请参见fiddle。它不是很优雅,但确实可以满足我(和我希望)的要求。
#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>