HTML5/jQuery 跨浏览器响应图像

发布于 2024-12-03 03:42:30 字数 1591 浏览 2 评论 0 原文

我正在尝试设计一种显示图像的方法,该方法可以以跨浏览器兼容的方式响应地调整大小。使用 CSS3 媒体查询是行不通的,因为它们没有得到广泛支持。然而,jQuery 使我能够利用 HTML5 中的“数据”属性。

这就是我想出的办法。还有其他人有好的想法吗?或者可以对这个想法进行任何调整吗?

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>HTML5/jQuery Responsive Images</title>
        <style>
            body { padding: 0; margin: 0; }
        </style>
        <script src="jquery-1.6.2.min.js" type="text/javascript"></script>
        <script>
        $(window).resize(setSize)
        $(document).ready(setSize);
        function setSize() {
            var bodywidth = $(document).width();
            var small_max = 600;
            var medium_max = 800;

            if (bodywidth > small_max && bodywidth <= medium_max) {
                $('img').each(function(){
                    $(this).attr('src',$(this).data('src-800px'));
                });
            } else if (bodywidth <= small_max ) {
                $('img').each(function(){
                    $(this).attr('src',$(this).data('src-600px'));
                });
            } else if (bodywidth > medium_max ) {
                $('img').each(function(){
                    $(this).attr('src',$(this).data('src'));
                });
            }
        }
        </script>
    </head>
    <body>
        <img data-src="image.jpg" data-src-600px="image-600px.jpg" data-src-800px="image-800px.jpg" alt="Responsive image" style="width: 100%;" />
    </body>
</html>

I'm trying to devise a method of displaying images that resize responsively in a cross-browser-compatible manner. Using CSS3 media queries won't do because they're not supported widely. jQuery, however, affords me the ability to utilize the "data" attributes in HTML5.

This is what I have come up with. Does anyone else have good ideas? Or can offer any tweaking on this idea?

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title>HTML5/jQuery Responsive Images</title>
        <style>
            body { padding: 0; margin: 0; }
        </style>
        <script src="jquery-1.6.2.min.js" type="text/javascript"></script>
        <script>
        $(window).resize(setSize)
        $(document).ready(setSize);
        function setSize() {
            var bodywidth = $(document).width();
            var small_max = 600;
            var medium_max = 800;

            if (bodywidth > small_max && bodywidth <= medium_max) {
                $('img').each(function(){
                    $(this).attr('src',$(this).data('src-800px'));
                });
            } else if (bodywidth <= small_max ) {
                $('img').each(function(){
                    $(this).attr('src',$(this).data('src-600px'));
                });
            } else if (bodywidth > medium_max ) {
                $('img').each(function(){
                    $(this).attr('src',$(this).data('src'));
                });
            }
        }
        </script>
    </head>
    <body>
        <img data-src="image.jpg" data-src-600px="image-600px.jpg" data-src-800px="image-800px.jpg" alt="Responsive image" style="width: 100%;" />
    </body>
</html>

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

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

发布评论

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

评论(2

梦过后 2024-12-10 03:42:30

将 img 标签设置为 display:inline 将为您处理响应能力。

Setting the img tag to display:inline would handle the responsiveness for you.

小伙你站住 2024-12-10 03:42:30

看看我对此所做的一系列博客文章:

http://queryj.wordpress.com/2012/07/06/responsive-images-whats-the-problem-9-2/

基本上:

  1. 放置图像标签在块中
  2. 通过添加基于 noscript 块的图像来逐步增强页面
  3. 使用媒体查询侦听器在需要时更改图像

您需要一些填充程序来实现此技术 - 一个能够读取 noscript 标签 textContent< /em> 属性和一个向 IE 提供媒体查询和媒体查询侦听器< 10.

Have a look at a series of blog posts I did on this:

http://queryj.wordpress.com/2012/07/06/responsive-images-whats-the-problem-9-2/

Basically:

  1. Place image tag in a block
  2. Progressively enhance the page by adding an image based on the noscript block
  3. Use media query listener to change the image when required

You need a couple of polyfills for this technique - one to be able to read the noscript tag textContent property and one to provide media queries and media query listeners to IE < 10.

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