Modern Wave 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>Modern Wave 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; } .modern-wave-jumbotron { position: relative; background: linear-gradient(135deg, #ff7b7b, #ffb347); 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; } .modern-wave-jumbotron:before, .modern-wave-jumbotron:after { content: ''; position: absolute; width: 200%; height: 200%; background: rgba(255, 255, 255, 0.1); top: -50%; left: -50%; animation: wave 8s infinite linear; } .modern-wave-jumbotron:after { background: rgba(255, 255, 255, 0.2); animation: wave 8s infinite linear 4s; } .modern-wave-jumbotron .content { position: relative; z-index: 1; } .modern-wave-jumbotron h1 { font-size: 3rem; margin: 0 0 20px; animation: slideInFromTop 1.5s ease-in-out; } .modern-wave-jumbotron p { font-size: 1.2rem; margin: 0 0 20px; animation: slideInFromBottom 1.5s ease-in-out; } .modern-wave-jumbotron .cta { display: inline-block; padding: 10px 20px; font-size: 1.2rem; color: #fff; background: #6e8efb; border-radius: 25px; text-decoration: none; transition: background 0.3s; animation: popIn 2s ease-in-out; } .modern-wave-jumbotron .cta:hover { background: #4a64ff; } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes wave { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } @keyframes slideInFromTop { 0% { transform: translateY(-100%); } 100% { transform: translateY(0); } } @keyframes slideInFromBottom { 0% { transform: translateY(100%); } 100% { transform: translateY(0); } } @keyframes popIn { 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="modern-wave-jumbotron"> <div class="content"> <h1>Welcome to Our Platform <span class="emoji">🌟</span></h1> <p>Experience innovation <i class="fas fa-lightbulb icon"></i></p> <a href="#" class="cta">Join Now</a> </div> </div> </body> </html>