KYKLO_JS_000001 - Flying Banner for Cookies - Javascript Snippet

Figure I. The look of JS snippet

Below scripts are open-source script taken form : https://www.osano.com/cookieconsent/download/. We keep CSS and JS in our location to make sure we have control over the script.

To customize color, style and pop-up message, please find corresponding field in javascript section. For advanced customization (Box style and layout) , please refer to https://www.osano.com/cookieconsent/download/

To add Flying Banner for Cookies, please copied code below to Javascript snippet area.

  
<link rel="stylesheet" type="text/css" href="https://media-library.kyklo.tech/javascript-snippets/KYKLO_JS_000001/cookieconsent.min.css" />
<script src="https://media-library.kyklo.tech/javascript-snippets/KYKLO_JS_000001/cookieconsent.min.js" data-cfasync="false"></script>
<script>
window.cookieconsent.initialise({
  "palette": {
    "popup": {
      "background": "#efefef",
      "text": "#404040"
    },
    "button": {
      "background": "#8ec760",
      "text": "#ffffff"
    }
  },
  "position": "bottom-left",
  "content": {
    "message": "Message to display to Everyone",
    "dismiss": "OK!",
    "link": "See policy here",
    "href": "https://www.kyklo.co"
  }
});
</script>