Bubble Breadcrumb - 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>Bubble Breadcrumb</title> <style> body { font-family: 'Arial', sans-serif; background-color: #e0f7fa; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .breadcrumb { display: flex; list-style: none; padding: 0; margin: 0; background: #ffffff; border-radius: 50px; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); } .breadcrumb li { position: relative; padding: 12px 20px; cursor: pointer; transition: transform 0.3s; } .breadcrumb li:hover { transform: scale(1.05); } .breadcrumb a { text-decoration: none; color: #00838f; font-weight: bold; display: flex; align-items: center; } .breadcrumb a span.icon { margin-right: 10px; font-size: 1.5em; } @keyframes bubble { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } } .breadcrumb a .icon { animation: bubble 1.5s infinite; } </style> </head> <body> <ul class="breadcrumb"> <li> <a href="#"><span class="icon">🏠</span>Home</a> </li> <li> <a href="#"><span class="icon">📚</span>Library</a> </li> <li> <a href="#"><span class="icon">📘</span>Books</a> </li> </ul> </body> </html>