Gradient Burst Jumbotron - 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>Gradient Burst Jumbotron</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> <style> body { font-family: 'Arial', sans-serif; background-color: #f4f4f9; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .gradient-burst-jumbotron { position: relative; background: radial-gradient(circle, #ff9966, #ff5e62); border-radius: 15px; padding: 40px; text-align: center; color: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); overflow: hidden; animation: fadeIn 1.5s ease-in-out; } .gradient-burst-jumbotron:before, .gradient-burst-jumbotron:after { content: ''; position: absolute; width: 200%; height: 200%; background: rgba(255, 255, 255, 0.1); top: -50%; left: -50%; animation: burst 8s infinite linear; } .gradient-burst-jumbotron:after { background: rgba(255, 255, 255, 0.2); animation: burst 8s infinite linear 4s; } .gradient-burst-jumbotron .content { position: relative; z-index: 1; } .gradient-burst-jumbotron h1 { font-size: 3rem; margin: 0 0 20px; animation: zoomIn 1.5s ease-in-out; } .gradient-burst-jumbotron p { font-size: 1.2rem; margin: 0 0 20px; animation: zoomOut 1.5s ease-in-out; } .gradient-burst-jumbotron .cta { display: inline-block; padding: 10px 20px; font-size: 1.2rem; color: #fff; background: #7f7fd5; border-radius: 25px; text-decoration: none; transition: background 0.3s; animation: bounceIn 2s ease-in-out; } .gradient-burst-jumbotron .cta:hover { background: #4a4acc; } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes burst { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes zoomIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @keyframes zoomOut { 0% { transform: scale(1.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } } @keyframes bounceIn { 0%, 20%, 50%, 80%, 100% { transform: scale(1); } 40% { transform: scale(1.2); } 60% { transform: scale(1.1); } } /* Adding emoji and icon styles */ .emoji { font-size: 2rem; margin: 0 10px; animation: rotate 2s infinite linear; } .icon { font-size: 2rem; margin: 0 10px; animation: pulse 2s infinite linear; } @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } } </style> </head> <body> <div class="gradient-burst-jumbotron"> <div class="content"> <h1>Welcome to Our Universe <span class="emoji">🌌</span></h1> <p>Discover the endless possibilities <i class="fas fa-infinity icon"></i></p> <a href="#" class="cta">Get Started</a> </div> </div> </body> </html>