對(duì)于window.devicePixelRatio == 1的設(shè)備
<img src="http://example.com/100x100.jpg" alt="image 100 by 100" width="100" height="100">
看起來(lái)不錯(cuò):100×100像素的圖像用于100×100的平方-很好。
對(duì)于window.devicePixelRatio = = 2的設(shè)備(相同的尺寸可以使用更好的圖像質(zhì)量),寬度和高度屬性的值應(yīng)該是什么- 100還是200?
<img width="100" height="100" src="http://example.com/200x200.jpg" alt="image 200x200 for 100px by 100px">
或者
<img width="200" height="200" src="http://example.com/200x200.jpg" alt="image 200x200 for 100px by 100px">
是否應(yīng)該根據(jù)window.devicePixelRatio更新img寬度和高度屬性值,或者不應(yīng)該更改它們?
這個(gè)簡(jiǎn)單而基本的問(wèn)題,我找不到任何明確的信息。