如何创建:动画搜索框
- 이전 페이지 텍스트를 클립보드에 복사
- 다음 페이지 검색 버튼
学习如何使用 CSS 创建动画搜索表单。
点击输入字段:
如何创建动画搜索框
第一步 - 添加 HTML:
<input type="text" name="search" placeholder="Search..">
第二步 - 添加 CSS:
input[type=text] { width: 130px; -webkit-transition: width 0.4s ease-in-out; transition: width 0.4s ease-in-out; } /* 当输入字段获得焦点时,将其宽度更改为 100% */ input[type=text]:focus { width: 100%; }
관련 페이지
강의:HTML 양식
강의:CSS 양식
- 이전 페이지 텍스트를 클립보드에 복사
- 다음 페이지 검색 버튼