我想使用 amp-list 为 AMP4Email 创建一个动态 amp-carousel。
我在这里构建了一个通过验证的模板,但是将其放入https://amp.gmail.dev/playground/时,轮播不起作用。
AMP4Email 无法做到这一点吗?通常基于此,它似乎在 AMP 中运行良好。
渲染轮播的代码部分
<amp-list src="https://amp-templates.com/templates/api/1.json"
layout="fixed-height"
height="400">
<template type="amp-mustache">
<amp-carousel id="links-carousel"
height="400"
layout="fixed-height"
type="slides">
{{#default}}
{{#images}}
<div>
<a href="{{link}}" class="carousel-link">
<amp-img
class="contain"
layout="fill"
src="{{image}}"
alt="photo courtesy of Unsplash"></amp-img>
<div class="caption">
<p>{{description}}</p>
</div>
</a>
</div>
{{/images}}
{{/default}}
</amp-carousel>
</template>
</amp-list>