我想在我的网站上开始使用WebP。我正在转换看起来像这样的代码:
<img src="example.jpg" width="100" height="100" alt="Example">
要编码如下:
<picture>
<source srcset="example.webp" type="image/webp">
<img src="example.jpg" width="100" height="100" alt="Example">
</picture>
放置width
和height
属性的正确位置在哪里?仅使用height
元素中的width
和<img>
属性,即使选择了<source>
图像,也能正常工作吗?
答案 0 :(得分:3)
是的,使用height
元素中的width
和<img>
属性(以及其他任何地方)确实可以正常工作。您无需尝试在<picture>
元素上设置任何属性。
运行此代码段以获取证据:
<p><code><img></code> without <code>height</code> and <code>width</code> attributes:</p>
<picture>
<source srcset="https://a.webpurr.com/Ql62.webp" type="image/webp">
<img src="https://i.stack.imgur.com/mraCN.jpg" alt="Example">
</picture>
<p><code><img></code> with <code>height</code> and <code>width</code> attributes:</p>
<picture>
<source srcset="https://a.webpurr.com/Ql62.webp" type="image/webp">
<img src="https://i.stack.imgur.com/mraCN.jpg" width="100" height="100" alt="Example">
</picture>
(如果您看到图像标记为“JPEG”,那么您使用的是不支持WebP的浏览器。如果您没有看到图像,则可能是图像主机webpurr.com已关闭。)