/* ============================================================ Eccellenze Italiane — Banner cookie + Meta Pixel Il Pixel parte SOLO dopo il consenso esplicito dell'utente. Per disattivare tutto: rimuovere la riga dalle pagine HTML. ============================================================ */ (function () { var PIXEL_ID = '1538670873060126'; var CHIAVE = 'ei_consenso_cookie'; // salvato nel browser dell'utente var VERDE = '#055D39'; /* ---------- 1. Attivazione del Meta Pixel ---------- */ function attivaPixel() { if (window.fbq) return; !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n; n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)} (window,document,'script','https://connect.facebook.net/en_US/fbevents.js'); fbq('init', PIXEL_ID); fbq('track', 'PageView'); tracciaClicSuiBadge(); } /* ---------- 2. Evento sul clic dei badge store ---------- */ /* Registra quando qualcuno clicca "Google Play" o "App Store": è la conversione vera della landing. */ function tracciaClicSuiBadge() { var link = document.querySelectorAll('a[href]'); for (var i = 0; i < link.length; i++) { (function (a) { var href = a.getAttribute('href') || ''; var store = null; if (href.indexOf('play.google.com') > -1) store = 'GooglePlay'; if (href.indexOf('apps.apple.com') > -1) store = 'AppStore'; if (!store) return; a.addEventListener('click', function () { if (window.fbq) { fbq('trackCustom', 'ClicBadgeStore', { store: store }); } }); })(link[i]); } } /* ---------- 3. Il banner ---------- */ function mostraBanner() { var barra = document.createElement('div'); barra.setAttribute('id', 'ei-cookie-banner'); barra.setAttribute('role', 'dialog'); barra.setAttribute('aria-label', 'Informativa cookie'); barra.innerHTML = '
' + '

' + 'Usiamo cookie tecnici e, con il tuo consenso, cookie di terze parti ' + '(Meta) per misurare l\'efficacia delle nostre campagne. ' + 'Informativa privacy' + '

' + '
' + '' + '' + '
' + '
'; barra.style.cssText = 'position:fixed;left:0;right:0;bottom:0;z-index:99999;' + 'background:#fff;border-top:3px solid ' + VERDE + ';' + 'box-shadow:0 -4px 18px rgba(0,0,0,.14);' + 'padding:16px 18px;box-sizing:border-box;' + 'font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;'; document.body.appendChild(barra); document.getElementById('ei-cookie-accetta').onclick = function () { salva('accetta'); chiudi(barra); attivaPixel(); }; document.getElementById('ei-cookie-rifiuta').onclick = function () { salva('rifiuta'); chiudi(barra); }; } function chiudi(el) { if (el && el.parentNode) el.parentNode.removeChild(el); } function salva(valore) { try { localStorage.setItem(CHIAVE, valore); } catch (e) {} } function leggi() { try { return localStorage.getItem(CHIAVE); } catch (e) { return null; } } /* ---------- 4. Avvio ---------- */ function avvia() { var scelta = leggi(); if (scelta === 'accetta') { attivaPixel(); return; } // già acconsentito if (scelta === 'rifiuta') { return; } // già rifiutato mostraBanner(); // prima visita } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', avvia); } else { avvia(); } })();