增加定时、手动关闭 Cookie 提示

hotfix/paypal-note
LiaoYijun 3 years ago
parent a167fda43f
commit 4281c203a5

@ -358,7 +358,7 @@
</div>
</div>
<div class="web_cookie" id='gotIdArea' style='display: none;'><p>Asia 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">privacy policy</a>.</p>
<div class="cookie_close">X</div>
<div class="cookie_close" id="gotItBtn">X</div>
</div>
<script>
var GOT_IT_KEY = '__asia_highlights_you_agree_to_use_of_cookies__';
@ -369,6 +369,15 @@
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';
}, 5000);
}
</script>
<!--PC底部 结束-->

@ -307,7 +307,7 @@
© 2016-2022 Asia Highlights <br>— Discovery Your Way!
</div>
<div class="web_cookie" id='gotIdArea' style='display: none;'><p>Asia 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">privacy policy</a>.</p>
<div class="cookie_close">X</div>
<div class="cookie_close" id="gotItBtn">X</div>
</div>
<script>
var GOT_IT_KEY = '__asia_highlights_you_agree_to_use_of_cookies__';
@ -318,6 +318,15 @@
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';
}, 5000);
}
</script>
</footer>

Loading…
Cancel
Save