前端小项目10 # Hidden Search Widget 隐藏搜索小部件

知识点

介绍

点击搜索框内最右侧🔍图标,搜索框逐渐宽度缩小直至只剩下搜索图标,再次点击图标,搜索框恢复原样。
请添加图片描述

代码

HTML:

 <div>
     <input id="search-input" type="text" placeholder="Search...">
     <span id="search" class="fa fa-search"></span>
 </div>

CSS:

 body{
     display: flex;
     justify-content: space-evenly;
     align-items: center;
     height: 100vh;
     background-color: mediumpurple;
 }
 #search-input{
     width: 150px;
     height: 36px;
     padding: 0px 40px 0px 8px;
     margin: 0;
     border: 0px;
     outline: none;
     font-size: 18px;
     background-color: #fff;
     transition: .5s;
 }
 .close-input{
     width: 0px!important;
     padding-right: 28px!important;
 }
 #search-input::placeholder{
     font-weight: 100;
 }
 #search{
     position: relative;
     left:-40px;
     padding: 10px;
     cursor: pointer;
 }

JavaScript:

 const search = document.getElementById("search")
 const input = document.getElementById("search-input")

 search.addEventListener("click",()=>{
     input.classList.toggle("close-input")
 })
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值