使用 jQuery 实现增量背景位置动画
我有一个 100% 宽、284 像素高的 div,名为 #photoStripe,具有 5000 像素宽的背景图像。然后在其上添加左右导航按钮。这个想法是能够通过向左和向右增量地动画背景图像来向左向右平移。
我正在使用流行的背景位置插件,它允许您为 x 和同时计算背景位置的 y 值。
嗯,背景有动画,但只执行一次。 (无法一次又一次点击)。有什么想法吗?
jQuery:
$('#photoStripe').css({backgroundPosition:"0 0"});
$('a.moveLeft').click(function(){
$('#photoStripe').stop().animate({backgroundPosition:'-=200px 0'}, {duration:500});
});
$('a.moveRight').click(function(){
$('#photoStripe').stop().animate({backgroundPosition:'+=200px 0'}, {duration:500});
});
CSS:
#photoStripe {
width:100%;
height:286px;
text-align:center;
overflow:hidden;
background:url(../_images/photo_stripe.jpg);
}
I've got a 100% wide and 284px high div called #photoStripe with a 5000px wide background image. Then left and right nav buttons over it. The idea is to be able to pan left an right, by animating the background image incrementally left and right.
I'm using the popular background position plugin, which allows you to animate the x and y values of the background position simultaneously.
Well, the background animates, but it only does once. (Can't click again and again).Any ideas?
jQuery:
$('#photoStripe').css({backgroundPosition:"0 0"});
$('a.moveLeft').click(function(){
$('#photoStripe').stop().animate({backgroundPosition:'-=200px 0'}, {duration:500});
});
$('a.moveRight').click(function(){
$('#photoStripe').stop().animate({backgroundPosition:'+=200px 0'}, {duration:500});
});
CSS:
#photoStripe {
width:100%;
height:286px;
text-align:center;
overflow:hidden;
background:url(../_images/photo_stripe.jpg);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我检查此代码时,在 FF 中似乎没问题,这是我的代码,您确定那里有所有内容吗?你能发布你的完整代码吗
请告诉我,我会尽力提供帮助:)
干杯
G。
It seems fine in FF when I'm checking this code, here's my code, are you sure you have everything there? Could you post your whole code pls
Let me know, I'll try to help :)
Cheers
G.