我正在尝试设计一种方法来显示以跨浏览器兼容的方式响应调整大小的图像。使用 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>