JQuery - .animate ;
早安先生堆栈溢出。
是否可以在 2 个 img 之间制作动画?就像,改变img src &淡入新的img src?
Html
<img class="classimg" src="images/example.png" />
我的伪 jquery/javascript 代码:
On Click
Animate .classimg height 50 width 100 opacity 1, 600
Animate .classimg height 200 width 450, 400
Animate .classimg change img src to url(images/example_with_green.png), 700
感谢您的努力 - 祝 12 月 1 日愉快!
Morning mr. Stackoverflow.
Is it possible to .animate between 2 img ? Like, change the img src & fade to the new img src?
Html
<img class="classimg" src="images/example.png" />
My pseudo jquery/javascript code:
On Click
Animate .classimg height 50 width 100 opacity 1, 600
Animate .classimg height 200 width 450, 400
Animate .classimg change img src to url(images/example_with_green.png), 700
Thank you for your affort - and a good 1st dec!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
正如罗伯特所说,你可以做的是:
HTML:
As Robert said what you can do is this:
And the HTML:
仅使用单个 HTML
img
元素是不可能实现这一点的。您可以做的是对重叠图像进行动画/淡入淡出。淡入一个,另一个淡出。jQuery
animate()
函数只能对三维 CSS 样式进行动画处理。要还允许彩色动画,您必须使用 jQuery UI 效果。但没有像两个图像源这样的开箱即用的支持。将所有图像放入同一个 DIV 容器中,如下所示:
然后循环浏览这些图像并根据需要执行动画。
This is not possible with just a single HTML
img
element. What you can do is animate/fade to overlaid images. Fade one in and the other one out.jQuery
animate()
function can only animate dimensional CSS styles. To also allow colour animations, you have to use jQuery UI effects. But nothing like two image sources is supported out of the box.Put all images in the same DIV container like this:
and then cycle through these images and do animations as appropriate.
您可以制作单个背景(包含两个图像),并为背景位置设置动画。 这是演示(以及 这里的文章,如果您有兴趣的话)。
You could make a single background (containing both images), and animate the background position. Here's the demo (and the article here, if you're interested).