我确定我在这里遗漏了一些东西。
为什么这个 100% 宽度的图像大于window.screen.width * window.devicePixelRatio
如果屏幕宽度等于360px,设备比例为2
这个 100% 宽度的图像不应该等于720px而不是报告的964px
固定宽度图像
此外,如果我放置一个 720 像素的图像,它不会覆盖整个设备宽度???
请注意,这是在我的真实设备上使用的 moto g4 播放器,屏幕分辨率为 720x1280
编辑
当我运行此代码时,如果图像在我的情况下为 964px,则报告的宽度。
这段代码也在这里http://li209-135.members.linode.com/
它应该在移动浏览器中查看。
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
<script>
$(function(){
$('#log').append('<p style="font-size:2em;">Screen Width: ' + window.screen.width + '</p>');
$('#log').append('<p style="font-size:2em;"> Device Pixel Ratio: ' + window.devicePixelRatio + '</p>');
$('#log').append('<p style="font-size:2em;"> Image Width: ' + $('#test-image').width() + '</p>');
});
</script>
</head>
<body>
<img id="test-image" width="100%" src="http://via.placeholder.com/100x100">
<div id="log"></div>
<br>
<img id="test-image" width="360px" src="http://via.placeholder.com/360x100">
<br>
<img id="test-image" width="720px" src="http://via.placeholder.com/720x100">
</body>
</html>