Animated Search Box
Modern search box with autocomplete suggestions, smooth animations, and responsive design, perfect for website search functionality.
Responsive Design
Yes
Dark Mode Support
No
lines
629
Browser Compatibility
Chrome Β· Firefox Β· Safari Β· Edge
Live Preview
Interact with the component without leaving the page.
Overview
Modern search box with autocomplete suggestions, smooth animations, and responsive design, perfect for website search functionality.
How to use
- Copy the HTML markup into your page.
- Paste the CSS into your stylesheet and ensure the selectors match your markup.
- Paste the JavaScript and load it after the markup.
- Adjust spacing, colors, and text to match your design system.
Customization tips
- Rename class names to avoid collisions with your existing CSS.
- Replace hard-coded colors with CSS variables for theming.
- Verify the layout at 320px, 768px, and 1024px widths.
HTML
47
lines
CSS
363
lines
JavaScript
219
lines
<div class="search-box-container">
<div class="search-box-demo">
<div class="search-header">
<h2>Search Our Website</h2>
<p>Find what you're looking for quickly</p>
</div>
<div class="search-wrapper" id="searchWrapper">
<div class="search-box" id="searchBox">
<div class="search-icon">π</div>
<input type="text" class="search-input" id="searchInput" placeholder="Search products, articles, or topics...">
<button class="clear-btn" id="clearBtn">Γ</button>
<button class="search-btn" id="searchBtn">Search</button>
</div>
<div class="suggestions-dropdown" id="suggestionsDropdown">
<div class="suggestion-group">
<div class="group-title">Popular Searches</div>
<div class="suggestion-item" data-value="wireless headphones">
<span class="suggestion-icon">π§</span>
<span class="suggestion-text">Wireless Headphones</span>
</div>
<div class="suggestion-item" data-value="smartphone">
<span class="suggestion-icon">π±</span>
<span class="suggestion-text">Smartphone</span>
</div>
<div class="suggestion-item" data-value="laptop">
<span class="suggestion-icon">π»</span>
<span class="suggestion-text">Laptop</span>
</div>
</div>
<div class="suggestion-group">
<div class="group-title">Recent Searches</div>
<div class="suggestion-item" data-value="bluetooth speaker">
<span class="suggestion-icon">π</span>
<span class="suggestion-text">Bluetooth Speaker</span>
</div>
<div class="suggestion-item" data-value="smart watch">
<span class="suggestion-icon">β</span>
<span class="suggestion-text">Smart Watch</span>
</div>
</div>
</div>
</div>
</div>
</div>
Browser Compatibility
Chrome
>= 50
Firefox
>= 45
Safari
>= 10
Edge
>= 15