HTML5/jQuery 跨浏览器响应图像
我正在尝试设计一种显示图像的方法,该方法可以以跨浏览器兼容的方式响应地调整大小。使用 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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 img 标签设置为 display:inline 将为您处理响应能力。
Setting the img tag to display:inline would handle the responsiveness for you.
看看我对此所做的一系列博客文章:
http://queryj.wordpress.com/2012/07/06/responsive-images-whats-the-problem-9-2/
基本上:
您需要一些填充程序来实现此技术 - 一个能够读取 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:
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.