我有一个amp-list
,我正在尝试通过amp-fx
在sections
内部生成的amp-list
上使用amp-mustache
。
我的代码是这样的:
<amp-list
id=""
layout="fixed-height"
height="600"
items="News"
src="some_url_is_here">
<template type="amp-mustache" >
<section amp-fx="fly-in-bottom">
问题是amp-fx="fly-in-bottom"
被amp-list
或mp-mustache
移除,并且role
标签被插入其中,所以我的section
将会是最后是这样的:
<section amp-fx="" role="listitem">
我该如何解决?