GH 修改 Cookie 提示

hotfix/paypal-note
LiaoYijun 3 years ago
parent 0a1e5530a8
commit b65d41bb7d

@ -365,7 +365,14 @@ height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
</div>
</div>
<div class="web_cookie" style='display: none;' id='gotIdArea'><p>Global Highlights uses cookies to give you the best possible service. If you continue browsing, you agree to the use of cookies. More details can be found in our <a href="/privacy.htm">privacy policy</a>.</p></div>
<div class="web_cookie" style='display: none;' id='gotIdArea'><p>Global Highlights uses cookies to give you the best possible service. If you continue browsing, you agree to the use of cookies. More details can be found in our <a href="/privacy.htm">privacy policy</a>.</p>
<div class="cookie_close" id="gotItBtn" style="float: right;
padding: 5px 10px;
cursor: pointer;
background: #fff;
font-weight: 600;
font-size: 16px;">X</div>
</div>
<script>
var GOT_IT_KEY = '__global_highlights_you_agree_to_use_of_cookies__';
if (window.localStorage && localStorage.getItem(GOT_IT_KEY)) {
@ -375,6 +382,15 @@ height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
if (window.localStorage) {
localStorage.setItem(GOT_IT_KEY, '1');
}
var gotItBtn = document.getElementById('gotItBtn');
gotItBtn.addEventListener('click', function (evt) {
document.getElementById('gotIdArea').style.display = 'none';
});
setTimeout(function() {
document.getElementById('gotIdArea').style.display = 'none';
}, 10000);
}
</script>
<!--PC底部 结束-->

@ -316,7 +316,14 @@ aria-label="festival">
© 2018-2022 Global Highlights <br>— Discovery Your Way!
</div>
</footer>
<div class="web_cookie" style='display: none;' id='gotIdArea'><p>Global Highlights uses cookies to give you the best possible service. If you continue browsing, you agree to the use of cookies. More details can be found in our <a href="/privacy.htm">privacy policy</a>.</p></div>
<div class="web_cookie" style='display: none;' id='gotIdArea'><p>Global Highlights uses cookies to give you the best possible service. If you continue browsing, you agree to the use of cookies. More details can be found in our <a href="/privacy.htm">privacy policy</a>.</p>
<div class="cookie_close" id="gotItBtn" style="float: right;
padding: 5px 10px;
cursor: pointer;
background: #fff;
font-weight: 600;
font-size: 16px;">X</div>
</div>
<script>
var GOT_IT_KEY = '__global_highlights_you_agree_to_use_of_cookies__';
if (window.localStorage && localStorage.getItem(GOT_IT_KEY)) {
@ -326,6 +333,15 @@ aria-label="festival">
if (window.localStorage) {
localStorage.setItem(GOT_IT_KEY, '1');
}
var gotItBtn = document.getElementById('gotItBtn');
gotItBtn.addEventListener('click', function (evt) {
document.getElementById('gotIdArea').style.display = 'none';
});
setTimeout(function() {
document.getElementById('gotIdArea').style.display = 'none';
}, 10000);
}
</script>
<!--移动底部 结束-->

Loading…
Cancel
Save