我正在使用验证器(https://validator.ampproject.org/)将我的网页的无效css转换为AMP友好,根据网站(https://www.ampproject.org/docs/guides/responsive/style_pages)转换仅限于不透明度和转换。然而,我在整个CSS中都有彩色动画,验证器似乎并不关心它们。
验证器是否不正确或过时?有没有其他人遇到这个?也许AMP现在允许颜色过渡?谢谢!
我的代码中的Ex片段:
<style amp-custom>
a {
background-color: transparent;
color: #1274b8;
text-decoration: none;
cursor: pointer;
transition: color .25s ease-out, background-color .25s ease-out; //this is valid and passing
}
a:hover {
color: purple;
}
</style>