Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

จะสร้างฟอร์มการค้นหาแบบเคลื่อนไหวด้วย CSS ได้อย่างไร?


ต่อไปนี้คือโค้ดที่สร้างรูปแบบการค้นหาแบบเคลื่อนไหวด้วย 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>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

จะสร้างฟอร์มการค้นหาแบบเคลื่อนไหวด้วย CSS ได้อย่างไร?

เมื่อคลิกช่องค้นหา −

จะสร้างฟอร์มการค้นหาแบบเคลื่อนไหวด้วย CSS ได้อย่างไร?