Skip to content

Instantly share code, notes, and snippets.

@kas-cor
Last active April 21, 2021 12:11
Show Gist options
  • Save kas-cor/073a6535b8f8528e8a52397a6041c217 to your computer and use it in GitHub Desktop.
Save kas-cor/073a6535b8f8528e8a52397a6041c217 to your computer and use it in GitHub Desktop.
Cookies agree for sites | Плашка для принятия обработки кукисов.
$(function () {
if (!$.cookie('cookies_agree')) {
$("body").append([
'<div class="cookies_agree">',
'<div style="width: 80%; text-align: center; padding: 10px;">',
'Продолжая работу с ' + location.hostname + ', Вы подтверждаете использование сайтом cookies Вашего ',
'браузера с целью улучшить предложения и сервис на основе Ваших предпочтений и интересов.',
'</div>',
'<div style="width: 20%; text-align: center; padding: 10px;">',
'<button type="button" style="padding: 5px;">Понятно</button>',
'</div>',
'</div>',
].join(''));
$(".cookies_agree").css({
'position': 'fixed',
'bottom': 0,
'left': '5%',
'right': '5%',
'height': '120px',
'background': '#000',
'color': '#fff',
'opacity': '.7',
'z-index': '999999999999',
'display': 'flex',
'align-items': 'center',
'justify-content': 'center',
'font-family': 'sans-serif',
'font-size': '15px',
'border-radius': '5px 5px 0 0',
}).find("button").click(function () {
$(".cookies_agree").fadeOut();
$.cookie('cookies_agree', 'yes');
});
}
});
@kas-cor
Copy link
Author

kas-cor commented Apr 21, 2021

Request | Требования

  • JQuery
  • JQuery.cookies

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment