Animated Cookie Consent Banner

Beginner

Modern cookie consent banner with smooth animations and customizable options, perfect for GDPR and privacy compliance.

Live Preview

Code Implementation

HTML
<div class="cookie-consent-demo">
  <button class="show-banner-btn" id="showBannerBtn">Show Cookie Banner</button>
</div>

<div class="cookie-consent-banner" id="cookieConsentBanner">
  <div class="banner-content">
    <div class="banner-text">
      <h4>We use cookies</h4>
      <p>We use cookies to improve your experience and for marketing purposes. By continuing to use our site, you consent to our cookie policy.</p>
    </div>
    <div class="banner-actions">
      <button class="btn btn-secondary" id="rejectCookies">Reject</button>
      <button class="btn btn-primary" id="acceptCookies">Accept All</button>
      <button class="btn btn-outline" id="customizeCookies">Customize</button>
    </div>
  </div>
  
  <div class="customization-panel" id="customizationPanel">
    <div class="panel-header">
      <h4>Cookie Preferences</h4>
      <button class="close-panel" id="closePanel">×</button>
    </div>
    <div class="panel-content">
      <div class="cookie-option">
        <div class="option-info">
          <h5>Essential Cookies</h5>
          <p>Required for the website to function properly</p>
        </div>
        <label class="switch">
          <input type="checkbox" id="essentialCookies" checked disabled>
          <span class="slider"></span>
        </label>
      </div>
      
      <div class="cookie-option">
        <div class="option-info">
          <h5>Analytics Cookies</h5>
          <p>Help us understand how visitors interact with our site</p>
        </div>
        <label class="switch">
          <input type="checkbox" id="analyticsCookies" checked>
          <span class="slider"></span>
        </label>
      </div>
      
      <div class="cookie-option">
        <div class="option-info">
          <h5>Marketing Cookies</h5>
          <p>Used to track visitors across websites for personalized ads</p>
        </div>
        <label class="switch">
          <input type="checkbox" id="marketingCookies">
          <span class="slider"></span>
        </label>
      </div>
    </div>
    <div class="panel-actions">
      <button class="btn btn-primary" id="savePreferences">Save Preferences</button>
    </div>
  </div>
</div>

Snippet Features

Responsive Design: Yes
Dark Mode Support: No
Category: widgets
Difficulty Level: Beginner

Browser Compatibility

🟢
chrome 50+
🟠
firefox 45+
🔵
safari 10+
🟦
edge 15+