E-Commerce cards need to be incredibly fast and visual. We will implement color swatches that literally swap the product image when clicked!

Interactive Elements

When the user clicks โ€œAdd to Cartโ€, providing immediate animated feedback increases conversion rates.

const cartBtn = document.querySelector('.add-cart');

cartBtn.addEventListener('click', () => {
  cartBtn.classList.add('added');
  cartBtn.innerText = 'รขล“โ€œ Added to Cart';
  
  setTimeout(() => {
    cartBtn.classList.remove('added');
    cartBtn.innerText = 'Add to Cart';
  }, 2000);
});

Try clicking the color swatch circles in the Live Demo to see the shoes change color instantly!