0

amp-img 的 URL 链接

如何放大图片网址而不是常规图片?

我已经尝试过以常规方式执行 amp-html,但没有成功。

4

1 回答 1

2

您必须像这样添加 AMP Carousel:

<amp-carousel id="custom-button"  width="400" height="300" layout="responsive" type="slides" autoplay delay="2000">
<a href="https://www.example.com/amp/" target="_blank"> <amp-img src="https://www.example.com/wp-content/uploads/2020/04/amp_img_1.jpg" width="400" height="300" layout="responsive" alt="AMP Carousel"></amp-img></a>
<a href="https://www.example2.com/amp/" target="_blank"> <amp-img src="https://www.example.com/wp-content/uploads/2020/04/amp_img_2.jpg" width="400" height="300" layout="responsive" alt="AMP Carousel"></amp-img></a>
</amp-carousel>

然后你必须像这样在锚标签上添加 CSS:display:grid;

于 2020-04-23T15:53:50.303 回答