ต่อไปนี้คือโค้ดที่สร้างรูปแบบการค้นหาแบบเคลื่อนไหวด้วย CSS -
ตัวอย่าง
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> *{ box-sizing: border-box; } input[type=text] { width: 170px; font-size: 16px; background-color: white; padding: 12px 20px 12px 40px; transition: width 0.4s ease-in-out; } input[type=text]:focus { width: 100%; } </style> </head> <body> <h1>Animated search form example</p> <form> Search: <input type="text" name="search" placeholder="Search Here..."> </form> </body> </html>
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
เมื่อคลิกช่องค้นหา −