我正在尝试使用 jQuery 更改悬停时 div 的背景图像。这是我到目前为止提出的,但是,它不起作用:
html
<div class="logo"></div>
css
.logo {
width: 300px;
height: 100px;
background: url('http://placehold.it/300x100/ffffff/000000.png&text=first') no-repeat center top;
}
js
$('.logo').hover(
function(){
$(this).animate({backgroundImage: 'http://placehold.it/300x100/ffffff/000000.png&text=second'},'fast');
},
function(){
$(this).animate({backgroundImage: 'http://placehold.it/300x100/ffffff/000000.png&text=first'},'fast');
});
jsfiddle在这里:http: //jsfiddle.net/26j6P/1/
我究竟做错了什么?如果我为背景颜色设置动画,它就可以正常工作......