Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <!-- TO WKLEIC NA GORZE POD INNYMI PODOBNYMI LINKAMI DO CSSos -->
  2. <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.css" />
  3.  
  4.  
  5. <!-- TO WKLEIC TUZ PRZED ZNACZKIEM </body> -->
  6. <div id="cookieconsent"></div>
  7. <script src="https://cdn.jsdelivr.net/npm/cookieconsent@3/build/cookieconsent.min.js"></script>
  8. <script>
  9. window.cookieconsent.initialise({
  10. container: document.getElementById("cookieconsent"),
  11. palette:{
  12. popup: {background: "#fff"},
  13. button: {background: "#000"},
  14. },
  15. revokable: true,
  16. onStatusChange: function(status) {
  17. console.log(this.hasConsented() ?
  18. 'enable cookies' : 'disable cookies');
  19. },
  20. "position": "bottom-left",
  21. "theme": "classic",
  22. "content": {
  23. "header": 'Cookies used on the website!',
  24. "message": 'This website uses cookies to improve your experience.',
  25. "dismiss": 'Got it!',
  26. "allow": 'Allow cookies',
  27. "deny": 'Decline',
  28. "link": 'Learn more',
  29. "href": 'https://www.venturetechnology.pl/cookies',
  30. "close": '&#x274c;',
  31. "policy": 'Cookie Policy',
  32. "target": '_blank',
  33. }
  34. });
  35. </script>
  36. <!-- PO TYM POWINIEN BYC </body> -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement