AMP 样板代码
head > style[amp-boilerplate]
和 noscript > style[amp-boilerplate]
AMP HTML 文档必须在 head
标签中包含以下样板。验证目前通过正则表达式完成,因此尽可能减少变异非常重要。目前,允许的变异有
- 在
style
标签打开后和关闭前立即插入任意空格 - 用任意空格替换下面代码段中的任何空格。
<style amp-boilerplate>body{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript>
你可以使用 样板生成器 为你的 AMP 页面快速设置一个基本框架。它还提供结构化数据代码段,用于创建 PWA 等!