Flip Card Download Button - VexaX
Run Code
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>Flip Card Download Button</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; background: #f0f0f0; margin: 0; font-family: Arial, sans-serif; } .download-btn { padding: 15px 30px; background: #42a5f5; color: white; font-size: 18px; font-weight: bold; text-decoration: none; border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); perspective: 1000px; } .download-btn:hover .inner { transform: rotateY(180deg); } .download-btn .inner { display: flex; align-items: center; transition: transform 0.6s; transform-style: preserve-3d; } .download-btn .icon, .download-btn .text { backface-visibility: hidden; } .download-btn .icon { font-size: 24px; margin-right: 10px; } .download-btn .text { display: block; } .download-btn .back { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; backface-visibility: hidden; transform: rotateY(180deg); color: #42a5f5; background: white; border-radius: 8px; } </style> </head> <body> <a href="#" class="download-btn"> <div class="inner"> <span class="icon">⬇️</span> <span class="text">Download</span> <div class="back">🚀</div> </div> </a> </body> </html>