Cyberpunk Glitch Product Card - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Cyberpunk Glitch Product Card</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #0d0d0d; font-family: 'Arial', sans-serif; } .cyberpunk-glitch { position: relative; width: 300px; padding: 20px; background: #1a1a1a; border-radius: 15px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); overflow: hidden; transition: transform 0.5s; } .cyberpunk-glitch:hover { transform: translateY(-10px) scale(1.05); } .cyberpunk-glitch::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, #ff0099, #00ccff, transparent); filter: blur(5px); z-index: -1; } .cyberpunk-glitch .product-image img { width: 100%; border-radius: 15px; transition: transform 0.5s; } .cyberpunk-glitch:hover .product-image img { transform: scale(1.1); } .cyberpunk-glitch .product-title { font-size: 1.5em; color: #fff; display: flex; align-items: center; } .cyberpunk-glitch .product-title span { margin-left: 10px; } .cyberpunk-glitch .product-price { font-size: 1.2em; color: #ff0099; margin: 10px 0; } .cyberpunk-glitch .product-description { font-size: 0.9em; color: #bbb; line-height: 1.5; } .cyberpunk-glitch .product-actions button { border: none; background: #ff0099; color: white; padding: 10px 15px; border-radius: 50px; cursor: pointer; transition: background 0.3s; } .cyberpunk-glitch .product-actions button:hover { background: #cc0077; } .cyberpunk-glitch .product-icons i { color: #fff; transition: color 0.3s; } .cyberpunk-glitch .product-icons i:hover { color: #ff0099; } </style> </head> <body> <div class="product-card cyberpunk-glitch"> <div class="product-image"> <img src="https://via.placeholder.com/300x200" alt="Product Image"> </div> <div class="product-details"> <h2 class="product-title">Cyberpunk Glitch Product <span>💾</span></h2> <p class="product-price">$129.99</p> <p class="product-description">Immerse yourself in the cyberpunk aesthetic with this glitch effect product card.</p> </div> <div class="product-actions"> <button>Add to Cart</button> <div class="product-icons"> <i class="fas fa-heart"></i> <i class="fas fa-share-alt"></i> <i class="fas fa-info-circle"></i> </div> </div> </div> <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script> </body> </html>