将 Amp-carousel 与 Amp-mustache 模板结合使用
Using Amp-carousel with Amp-mustache template
尝试使用 Mustache 从 JSON COR 文件中将图像调用到 amp-carousel 中。认为这应该很容易工作,但有一些问题。
<amp-list width=auto
height=auto
layout=fixed-height
src="carousel.json">
<template type="amp-mustache" id="amp-template-id">
<li>
<amp-carousel width="400"
height="244"
layout="fixed"
type="slides"
autoplay
delay="4000">
<amp-img width="400"
height="244"
layout="fixed"
src="{{src}}"></amp-img>
</amp-carousel>
</li>
</template>
<div overflow
role=button
aria-label="Show more"
class="list-overflow">
Show more
</div>
</amp-list>
这是不可能的,因为 amp-list 不能与 amp-carousel 结合使用:
尝试使用 Mustache 从 JSON COR 文件中将图像调用到 amp-carousel 中。认为这应该很容易工作,但有一些问题。
<amp-list width=auto
height=auto
layout=fixed-height
src="carousel.json">
<template type="amp-mustache" id="amp-template-id">
<li>
<amp-carousel width="400"
height="244"
layout="fixed"
type="slides"
autoplay
delay="4000">
<amp-img width="400"
height="244"
layout="fixed"
src="{{src}}"></amp-img>
</amp-carousel>
</li>
</template>
<div overflow
role=button
aria-label="Show more"
class="list-overflow">
Show more
</div>
</amp-list>
这是不可能的,因为 amp-list 不能与 amp-carousel 结合使用: