AMP轮播中的“位置:包含”

时间:2018-08-20 09:47:12

标签: carousel amp-html

创建AMP Carousel时,如何确保以相同方式包含不同比例的图片?换句话说,图片将显示宽度:100%,但是高度将相对于图片的比例进行削减。谢谢你。

1 个答案:

答案 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是一个示例。