Minimalist Pulse 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>Minimalist Pulse 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; } .minimalist-pulse-jumbotron { position: relative; background: #333; border-radius: 15px; padding: 40px; text-align: center; color: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); overflow: hidden; animation: pulseFadeIn 1.5s ease-in-out; } .minimalist-pulse-jumbotron:before, .minimalist-pulse-jumbotron:after { content: ''; position: absolute; width: 200%; height: 200%; background: rgba(255, 255, 255, 0.1); top: -50%; left: -50%; animation: pulseWave 8s infinite linear; } .minimalist-pulse-jumbotron:after { background: rgba(255, 255, 255, 0.2); animation: pulseWave 8s infinite linear 4s; } .minimalist-pulse-jumbotron .content { position: relative; z-index: 1; } .minimalist-pulse-jumbotron h1 { font-size: 3rem; margin: 0 0 20px; animation: pulseSlideInFromTop 1.5s ease-in-out; } .minimalist-pulse-jumbotron p { font-size: 1.2rem; margin: 0 0 20px; animation: pulseSlideInFromBottom 1.5s ease-in-out; } .minimalist-pulse-jumbotron .cta { display: inline-block; padding: 10px 20px; font-size: 1.2rem; color: #fff; background: #007bff; border-radius: 25px; text-decoration: none; transition: background 0.3s; animation: pulsePopIn 2s ease-in-out; } .minimalist-pulse-jumbotron .cta:hover { background: #0056b3; } @keyframes pulseFadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes pulseWave { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes pulseSlideInFromTop { 0% { transform: translateY(-100%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } } @keyframes pulseSlideInFromBottom { 0% { transform: translateY(100%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } } @keyframes pulsePopIn { 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="minimalist-pulse-jumbotron"> <div class="content"> <h1>Welcome to Simplicity <span class="emoji">✨</span></h1> <p>Elegance in every line <i class="fas fa-ruler-combined icon"></i></p> <a href="#" class="cta">Learn More</a> </div> </div> </body> </html>