jquery动画和图像调整大小闪烁
我在 http://www.mcz-scenario.it 中完成的调整大小效果有问题。当您点击一种语言时,您可以看到“背景”图像转移到屏幕的某个位置。
这是图像:
<img id="lago" src="http://www.mcz-scenario.it/images/lago.jpg" height="1070" width="1600" alt="lago" />
这是“调整大小”效果
$("#lago").animate({
height: 148,
width: 264,
top: endPosition2.top+42,
left: endPosition2.left+350+26}, 4000);
现在...我在 Firefox 中看到运行此动画时出现一些闪烁。我该如何处理这个问题?由于图片太大,这正常吗?请帮助我:(
谢谢
i've a problem with a resize effect that i've done in http://www.mcz-scenario.it. When you click on a language, you can see the "background" image transferring into a certain position of the screen.
this is the image:
<img id="lago" src="http://www.mcz-scenario.it/images/lago.jpg" height="1070" width="1600" alt="lago" />
And this is the "resize" effect
$("#lago").animate({
height: 148,
width: 264,
top: endPosition2.top+42,
left: endPosition2.left+350+26}, 4000);
Now... I see some flickering running this animation in Firefox. How can i handle this? Is it normal because the image is too large? Help me please :(
THX
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使动画更快,例如 500 而不是 4000。即使有一点闪烁,这种方式似乎也不会那么令人不安。
解决方案是使用 Flash。
Try making the animation faster, say 500 instead of 4000. It seems less disturbing this way even if there is a bit of flicker.
A solution would be to use Flash.