【发布时间】:2013-11-11 21:45:12
【问题描述】:
我正在尝试为背景图像设置动画,以便当您将链接无限悬停时(只要您将鼠标悬停在链接上)将在 905% 和 100% 之间来回移动。我创建了一个 JSFiddle 来播放,但它并没有真正过渡到任何动画,而是只是移动了背景。 JSFiddle
CSS
a{display: block; background: url('thin-right-arrow.png') no-repeat right center; widht: 100%:}
a {background-position: 90% center;}
a:hover {background-position: 100% center; -webkit-animation: animatedBackground 40s linear infinite;}
@keyframes animatedBackground {
from { background-position: 90% center; }
to { background-position: 100% center; }
}
【问题讨论】:
标签: javascript jquery html css