缓存后淡入高分辨率图像

发布于 2024-12-11 18:53:46 字数 92 浏览 0 评论 0原文

在客户端缓存高分辨率图像后,是否有一种最好的方法可以使用 javascript/jquery 优雅地淡入高分辨率图像,类似于 Bing 或 Yahoo Mail 的方式?

Is there a best way to gracefully fade in high-res images with javascript/jquery after the client has cached it, similar to the way Bing or Yahoo Mail does it ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

栩栩如生 2024-12-18 18:53:46

您正在寻找 jQuery 中的加载函数。这是一个示例:

<html>
<head>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
    <script type="text/javascript">
        $(function(){           
            $("#bigImg").load(function() {
                $(this).fadeIn(2000);
            });
        });
    </script>
</head>
<body>
    <img id="bigImg" style="display:none" src="http://upload.wikimedia.org/wikipedia/commons/a/a9/2006-03-26_Denver_Skyline_I-25_Speer.jpg" />
</body>
</html>

jQuery 参考: http://api.jquery.com/load-event/祝您

编码愉快!

You're looking for the load function in jQuery. Here is an example:

<html>
<head>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
    <script type="text/javascript">
        $(function(){           
            $("#bigImg").load(function() {
                $(this).fadeIn(2000);
            });
        });
    </script>
</head>
<body>
    <img id="bigImg" style="display:none" src="http://upload.wikimedia.org/wikipedia/commons/a/a9/2006-03-26_Denver_Skyline_I-25_Speer.jpg" />
</body>
</html>

And the jQuery reference: http://api.jquery.com/load-event/

Happy coding!

顾冷 2024-12-18 18:53:46

预加载图像时,我总是这样做:

newpic = new Image();      // create your new img
newpic.onload = function() // callback for when the img is loaded
{
                           // your callback, for you a .fadeIn()
};
newpic.src = your_img.jpg;  // Setting the img src will start the caching process

效果很好。

When preloading an image, I always do this :

newpic = new Image();      // create your new img
newpic.onload = function() // callback for when the img is loaded
{
                           // your callback, for you a .fadeIn()
};
newpic.src = your_img.jpg;  // Setting the img src will start the caching process

It works well.

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