加载动画 gif 后,我希望将其更改为 jpg

发布于 2024-12-08 20:59:47 字数 84 浏览 1 评论 0原文

我正在使用框架,并且希望页面使用动画 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

过去的过去 2024-12-15 20:59:47

呃,我不太明白你在做什么,但是你在 jquery 中更改了图像的 src,如下所示:

$('.myimageselector').attr('src', 'mynewimage.jpg');

Uh, I don't really get what you're doing, but you change the src of an image in jquery like this:

$('.myimageselector').attr('src', 'mynewimage.jpg');
喜爱纠缠 2024-12-15 20:59:47

如果您说想在客户端将 gif 转换为 jpg,那么不行。你总是可以让服务器端运行的东西以 jpg 的形式向他们发送文件(从 gi​​f 转换后)。

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).

独留℉清风醉 2024-12-15 20:59:47

您可以使用 jQuery .hover 函数轻松完成此操作。

像这样:

$('imageselector').hover(function(){
    $(this).attr('src','newimage.jpg');
},function(){
    $(this).attr('src','oldimage.gif');
});

这是我的例子:

http://jsfiddle.net/MarkKramer/UEhFu/

You can easily do this using the jQuery .hover function.

like this:

$('imageselector').hover(function(){
    $(this).attr('src','newimage.jpg');
},function(){
    $(this).attr('src','oldimage.gif');
});

Here is my example:

http://jsfiddle.net/MarkKramer/UEhFu/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文