每次鼠标悬停时,我都需要使用相同的gif为几个div元素设置动画。我使用css :hover
,但动画只播放一次。如何让它连续播放?
答案 0 :(得分:1)
这适用于img标签
<div><img /></div>
<div><img /></div>
$('div').mouseover(function() {
$('img', this).attr('src', 'http://dl.dropbox.com/u/3935026/central_bg_hover.gif');
});