微信小程序之搜索框样式(带源码)

一、效果图:

点击搜索框,"请输入搜索内容消失",可输入关键字

二、代码:

2.1、WXML代码:

html 复制代码
<!--搜索框部分-->
    <view class="search">
        <view class="search-btn">🔍</view>
        <input type="text" placeholder="请输入搜索内容" bindinput="onSearchInput" value="{{search}}" />
        <view class="search_btn"   bindtap="onSearch">搜索</view>
    </view>

2.2、WXSS代码:

css 复制代码
/* 搜索框*/

.search {
    display: flex;
    align-items: center;
    height: 90rpx;
    width: 720rpx;
    justify-content: space-between;
    padding: 0 20rpx;
    margin-top: 20rpx;
    margin-bottom: 20rpx;
    box-sizing: border-box;
    background-color: blue;
    opacity: 0.8;
    border-radius: 40rpx;
}

.search input {
    width: 480rpx;
}

.search .search_btn {
    height: 55rpx;
    width: 110rpx;
    border-radius: 55rpx;
    background-color: blue;
    color: #ffffff;
    text-align: center;
    line-height: 55rpx;
    cursor: pointer;
}
相关推荐
说私域2 小时前
内容力重塑品牌增长:开源AI大模型驱动下的智能名片与S2B2C商城赋能抖音生态种草范式
人工智能·小程序·开源·零售
前端缘梦3 小时前
微信小程序登录方案实践-从账号体系到用户信息存储
前端·微信小程序
coding随想7 小时前
2025年小程序开发全解析:技术储备、行业趋势与实战案例
微信小程序
Nueuis14 小时前
微信小程序前端面经
前端·微信小程序·小程序
轩11520 小时前
实现仿中国婚博会微信小程序
微信小程序·小程序
知否技术1 天前
2025微信小程序开发实战教程(一)
前端·微信小程序
喝牛奶的小蜜蜂1 天前
个人小程序:不懂后台,如何做数据交互
前端·微信小程序·小程序·云开发
2501_918941051 天前
旅游微信小程序制作指南
微信小程序·小程序·旅游
全职计算机毕业设计1 天前
SpringBoot+Mysql实现的停车场收费小程序系统+文档
spring boot·mysql·小程序
邹荣乐1 天前
微信小程序动态tabBar实现:基于自定义组件,灵活支持不同用户角色与超过5个tab自由组合
前端·微信小程序·uni-app