How TO - Animated Search Form

How TO - Animated Search Form

출처: http://www.w3schools.com/howto/howto_css_animated_search.asp

CSS와 애니메이션 검색 폼을 작성하는 방법에 대해 알아봅니다.

애니메이션 검색 폼 생성

1단계 HTML 추가

Example

1
<input type="text" name="search" placeholder="Search..">

2단계 CSS 추가

Example

1
2
3
4
5
6
7
8
9
10
.input[type=text] {
width: 130px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
}

/* When the input field gets focus, change its width to 100% */
input[type=text]:focus {
width: 100%;
}

HTML 폼 스타일하는 방법에 대한 자세한 내용 CSS 폼 튜토리얼에서 확인할 수 있습니다.

공유하기