创建AMP Carousel时,如何确保以相同方式包含不同比例的图片?换句话说,图片将显示宽度:100%,但是高度将相对于图片的比例进行削减。谢谢你。
答案 0 :(得分:0)
您可以将# First perform an action that fires an ajax request
wait = WebDriverWait(driver, 10)
wait.until(ajax_requests_to_finish())
的{{1}}布局与fixed-height
的{{1}}布局结合起来实现:
amp-carousel
技巧是将fill
用于嵌入式amp-img
:
<amp-carousel height="300"
layout="fixed-height"
type="slides">
<div class="fixed-height-container">
<amp-img class="contain"
layout="fill"
src="https://unsplash.it/500/400"></amp-img>
</div>
Here是一个示例。