加载动画 gif 后,我希望将其更改为 jpg
我正在使用框架,并且希望页面使用动画 gif 进行加载,但加载后,我希望链接是带有翻转的 jpeg。是否可以在 gif 动画之后加载最终的 jpg 图像?
I am using frames, and would like the page to load using animated gifs, but once loaded, I want the links to be jpegs with rollovers. Is it possible to have the final image a jpg loaded after the animated gif?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
呃,我不太明白你在做什么,但是你在 jquery 中更改了图像的 src,如下所示:
Uh, I don't really get what you're doing, but you change the src of an image in jquery like this:
如果您说想在客户端将 gif 转换为 jpg,那么不行。你总是可以让服务器端运行的东西以 jpg 的形式向他们发送文件(从 gif 转换后)。
If you are saying you would like to convert a gif to a jpg on the client side, then no. You could always have something running server side sending them the files in the form of jpg (after being converted from gifs).
您可以使用 jQuery
.hover
函数轻松完成此操作。像这样:
这是我的例子:
http://jsfiddle.net/MarkKramer/UEhFu/
You can easily do this using the jQuery
.hover
function.like this:
Here is my example:
http://jsfiddle.net/MarkKramer/UEhFu/