x
1
<style>
2
.search {
3
width: 130px; /* 设定起始宽度 */
4
box-sizing: border-box;
5
border: 2px solid #ccc;
6
border-radius: 4px;
7
font-size: 16px;
8
background-color: white;
9
background-image: url('//u.mifengjc.com/images/search-icon.png');
10
background-position: 10px 10px;
11
background-repeat: no-repeat;
12
padding: 12px 20px 12px 40px;
13
transition: width 0.4s ease-in-out;
14
transition: width 0.4s ease-in-out; /* 设置宽度改变时的动画 */
15
}
16
17
.search:focus {
18
width: 100%;
19
}
20
</style>
21
22
<p>动画搜索表单:</p>
23
24
<form>
25
<input class="search" type="text" name="search" placeholder="搜索...">
26
</form>
27