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로 애니메이션 검색 양식을 만드는 방법은 무엇입니까?