我想在我的静态 AMP 网站上实施 cookie 同意。amp-story-consent
到目前为止似乎不适合(cookie 同意没有页面或书挡,如果您知道如何在 amp-story-consent 的帮助下构建 AMP cookie 同意的解决方案?)。我正在尝试按照示例实现我自己的模式对话框。
<amp-consent layout="nodisplay" id="cookie-consent-element">
<script type="application/json">
{
"consents": {
"my-consent": {
"checkConsentHref": "https://amp.dev/documentation/examples/api/get-consent",
"promptUI": "cookie-consent-ui"
}
}
}
</script>
<div id="cookie-consent-ui" class="card col-lg-6 col-md-8 col-sm-10 col-xs-12" aria-labelledby="cookie-consent-title" role="dialog">
<h2 id="cookie-consent-title">Cookie Consent</h2>
<p>
Lorem ipsum dolor sit amet, list of cookies
</p>
<ul>
<li>
...
</li>
</ul>
<button type="button" on="tap:cookie-consent-element.accept" class="btn--primary" role="button">Accept</button>
<button type="button" on="tap:cookie-consent-element.reject" class="btn--secondary" role="button">Reject</button>
</div>
<div id="modal-overlay" tabindex="-1">
</div>
</amp-consent>
相关款式:
#modal-overlay {
width: 100%;
height: 100%;
z-index: 1002; /* places the modal overlay between the main page and the modal dialog*/
background-color: #000;
opacity: 0.5;
position: fixed;
top: 0;
left: 0;
margin: 0;
padding: 0;
}
#cookie-consent-ui {
margin-left: auto;
margin-right: auto;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1003; /* places the modal dialog on top of everything else */
position: fixed;
}
#cookie-consent-ui h2 {
text-align: center;
}
我正处于显示对话框的阶段。我遇到的问题: 1.modal-overlay
获取一个hidden
属性(我猜来自一些 AMP 逻辑),因此它不会覆盖模态对话框的周围环境作为背景。2. 如果我手动显示它(hidden
在调试器中删除),我仍然可以将焦点从对话框中移到背景元素上。应该防止这种tabindex=-1
情况,不起作用。
那么如何使用对话框制作背景显示呢?否则,一旦用户接受或拒绝同意,这似乎起作用:我添加data-block-on-consent
了相关amp
元素,并且对话框不再显示。我应该尝试和的组合amp-user-notification
吗amp-consent
?