我们不能使用onerror
属性,amp-img
但是,amp 提供Offline Fallback
feature 而不是onerror
.
amp-img 支持 AMP 的常用属性,这意味着您可以在无法加载图像的情况下显示回退。这非常适合为您的 AMP 添加离线支持。
当原始图像不可用或返回 404 时,这将为您提供您在后备 div中给出的文本输出:
<style amp-custom>
amp-img > div[fallback] {
display: flex;
align-items: center;
justify-content: center;
background: #f2f2f2;
border: solid 1px #ccc;
}
</style>
<amp-img src="/img/product-image.jpg" width="300" height="100" layout="responsive" class="m1">
<div fallback>offline</div>
</amp-img>
输出:
现在,如果您想在未找到原始图像时显示任何图像(例如无图像)而不是文本,则为后备 div设置背景图像
<style amp-custom>
amp-img > div[fallback] {
background:url('/img/does-not-exist.jpg') no-repeat;
}
</style>
<amp-img src="/img/product-image.jpg" width="300" height="100" layout="responsive" class="m1">
<div fallback></div>
</amp-img>
输出:
见官方文档: Amp Image - Offline Fallback