Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    How to make Helmet Reveal Animation using HTML CSS & JS

    3 January 2026

    How to make Animated Login Form with Glowing Input using HTML & CSS

    1 January 2026

    How to make Image Color Picker using HTML CSS & JS

    30 December 2025
    Facebook X (Twitter) Instagram YouTube Telegram Threads
    Coding StellaCoding Stella
    • Home
    • Blog
    • HTML & CSS
      • Login Form
    • JavaScript
    • Hire us!
    Coding StellaCoding Stella
    Home - HTML & CSS - How to make Animated Search Bar Input using HTML and CSS
    HTML & CSS

    How to make Animated Search Bar Input using HTML and CSS

    Coding StellaBy Coding Stella5 November 2025No Comments4 Mins Read
    Share Facebook Twitter Pinterest LinkedIn Tumblr Reddit Email WhatsApp Copy Link

    Let’s create an Animated Search Bar Input using HTML and CSS. This project will feature a clean and modern search bar that smoothly expands when clicked, creating a stylish and interactive user experience.

    We’ll use:

    • HTML to structure the search bar and input field.
    • CSS to style it and add smooth animations for expanding and collapsing effects.

    This project is perfect for beginners and front-end enthusiasts who want to add elegant motion and functionality to their website design. Let’s dive in and make a beautiful animated search bar that stands out! 🔍✨

    HTML :

    This HTML code creates a simple search bar with an animated caret (blinking cursor). It uses a form containing a label, a search input field, and a span element for the animated caret effect. The pattern=".*\S.*" ensures the input isn’t empty or just spaces, while the linked CSS file (style.css) handles the styling and caret animation.

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta charset="UTF-8">
      <title>Animated Search Bar Input Caret Jump | @coding.stella</title>
      <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
      <link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Hind&amp;display=swap'>
      <link rel="stylesheet" href="./style.css">
    
    </head>
    
    <body>
    
      <form>
        <label for="search">Search</label>
        <input id="search" type="search" pattern=".*\S.*" required>
        <span class="caret"></span>
      </form>
    
    </body>
    </html>

    CSS :

    This CSS styles and animates the search bar to smoothly transform from a small circular icon into a full input box when clicked. It sets color variables, centers the form, and adds transitions for smooth movement. When the user focuses or types, the circle expands into a rectangle, and the animated caret (the small blinking line) moves and transforms using keyframes (showCaret and handleToCaret). It also supports dark mode, automatically changing colors based on the system theme.

    * {
    	border: 0;
    	box-sizing: border-box;
    	margin: 0;
    	padding: 0;
    }
    
    :root {
    	--bg: #e3e4e8;
    	--fg: #17181c;
    	--input: #ffffff;
    	--primary: #255ff4;
    	--dur: 1s;
    	font-size: calc(16px + (24 - 16)*(100vw - 320px)/(1280 - 320));
    }
    
    body,
    input {
    	color: var(--fg);
    	font: 1em/1.5 Hind, sans-serif;
    }
    
    body {
    	background: var(--bg);
    	display: flex;
    	height: 100vh;
    }
    
    form,
    input,
    .caret {
    	margin: auto;
    }
    
    form {
    	position: relative;
    	width: 100%;
    	max-width: 17em;
    }
    
    input,
    .caret {
    	display: block;
    	transition: all calc(var(--dur) * 0.5) linear;
    }
    
    input {
    	background: transparent;
    	border-radius: 50%;
    	box-shadow: 0 0 0 0.25em inset;
    	caret-color: var(--primary);
    	width: 2em;
    	height: 2em;
    	-webkit-appearance: none;
    	-moz-appearance: none;
    	appearance: none;
    }
    
    input:focus,
    input:valid {
    	background: var(--input);
    	border-radius: 0.25em;
    	box-shadow: none;
    	padding: 0.75em 1em;
    	transition-duration: calc(var(--dur) * 0.25);
    	transition-delay: calc(var(--dur) * 0.25);
    	width: 100%;
    	height: 3em;
    }
    
    input:focus {
    	animation: showCaret var(--dur) steps(1);
    	outline: transparent;
    }
    
    input:focus+.caret,
    input:valid+.caret {
    	animation: handleToCaret var(--dur) linear;
    	background: transparent;
    	width: 1px;
    	height: 1.5em;
    	transform: translate(0, -1em) rotate(-180deg) translate(7.5em, -0.25em);
    }
    
    input::-webkit-search-decoration {
    	-webkit-appearance: none;
    }
    
    label {
    	color: #e3e4e8;
    	overflow: hidden;
    	position: absolute;
    	width: 0;
    	height: 0;
    }
    
    .caret {
    	background: currentColor;
    	border-radius: 0 0 0.125em 0.125em;
    	margin-bottom: -0.6em;
    	width: 0.25em;
    	height: 1em;
    	transform: translate(0, -1em) rotate(-45deg) translate(0, 0.875em);
    	transform-origin: 50% 0;
    }
    
    /* Dark mode */
    @media (prefers-color-scheme: dark) {
    	:root {
    		--bg: #17181c;
    		--fg: #e3e4e8;
    		--input: #2e3138;
    		--primary: #5583f6;
    	}
    }
    
    /* Animations */
    @keyframes showCaret {
    	from {
    		caret-color: transparent;
    	}
    
    	to {
    		caret-color: var(--primary);
    	}
    }
    
    @keyframes handleToCaret {
    	from {
    		background: currentColor;
    		width: 0.25em;
    		height: 1em;
    		transform: translate(0, -1em) rotate(-45deg) translate(0, 0.875em);
    	}
    
    	25% {
    		background: currentColor;
    		width: 0.25em;
    		height: 1em;
    		transform: translate(0, -1em) rotate(-180deg) translate(0, 0.875em);
    	}
    
    	50%,
    	62.5% {
    		background: var(--primary);
    		width: 1px;
    		height: 1.5em;
    		transform: translate(0, -1em) rotate(-180deg) translate(7.5em, 2.5em);
    	}
    
    	75%,
    	99% {
    		background: var(--primary);
    		width: 1px;
    		height: 1.5em;
    		transform: translate(0, -1em) rotate(-180deg) translate(7.5em, -0.25em);
    	}
    
    	87.5% {
    		background: var(--primary);
    		width: 1px;
    		height: 1.5em;
    		transform: translate(0, -1em) rotate(-180deg) translate(7.5em, 0.125em);
    	}
    
    	to {
    		background: transparent;
    		width: 1px;
    		height: 1.5em;
    		transform: translate(0, -1em) rotate(-180deg) translate(7.5em, -0.25em);
    	}
    }

    In conclusion, building an Animated Search Bar Input using HTML and CSS is a quick and fun way to enhance your web design. With simple structure and smooth animations, you can make a search bar that’s both functional and eye-catching 💫

    If your project has problems, don’t worry. Just click to download the source code and face your coding challenges with excitement. Have fun coding!

    Animation search search bar
    Share. Copy Link Twitter Facebook LinkedIn Email WhatsApp
    Previous ArticleHow to make Magic Navigation Tabs Menu using HTML CSS & JavaScript
    Next Article How to make 3D Login and Sign Up Form in HTML and CSS
    Coding Stella
    • Website

    Related Posts

    JavaScript

    How to make Helmet Reveal Animation using HTML CSS & JS

    3 January 2026
    HTML & CSS Login Form

    How to make Animated Login Form with Glowing Input using HTML & CSS

    1 January 2026
    JavaScript

    How to make Image Color Picker using HTML CSS & JS

    30 December 2025
    Add A Comment
    Leave A Reply Cancel Reply

    Trending Post

    Master Frontend in 100 Days Ebook

    2 March 202432K Views

    How to make Modern Login Form using HTML & CSS | Glassmorphism

    11 January 202430K Views

    How to make I love you Animation in HTML CSS & JavaScript

    14 February 202423K Views

    How to make Valentine’s Day Card using HTML & CSS

    13 February 202415K Views
    Follow Us
    • Instagram
    • Facebook
    • YouTube
    • Twitter
    ads
    Featured Post

    How to make Animated Slider with Button Wave Effect using HTML CSS & JavaScript

    13 September 2025

    How to make Cool Button hover effect using HTML & CSS

    31 August 2024

    How to make Simple Calculator using HTML CSS & JavaScript

    3 September 2024

    How to create Netflix Intro Animation using HTML and CSS

    29 June 2025
    Latest Post

    How to make Helmet Reveal Animation using HTML CSS & JS

    3 January 2026

    How to make Animated Login Form with Glowing Input using HTML & CSS

    1 January 2026

    How to make Image Color Picker using HTML CSS & JS

    30 December 2025

    How to make Happy New Year 2026 Animation using HTML and CSS

    28 December 2025
    Facebook X (Twitter) Instagram YouTube
    • About Us
    • Privacy Policy
    • Return and Refund Policy
    • Terms and Conditions
    • Contact Us
    • Buy me a coffee
    © 2026 Coding Stella. Made with 💙 by @coding.stella

    Type above and press Enter to search. Press Esc to cancel.

    Ad Blocker Enabled!
    Ad Blocker Enabled!
    Looks like you're using an ad blocker. We rely on advertising to help fund our site.
    Okay! I understood