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

一、效果图:

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

二、代码:

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;
}
相关推荐
lhldsg15 小时前
社区健身场地规划实战指南:从器材配置到智能化管理经验分享
java·开发语言·经验分享·小程序
Haibakeji17 小时前
APP小程序定制开发项目频繁延期?前期规避方法与落地避坑指南
小程序·uni-app·软件需求
show43319 小时前
2026小程序端AI智能优化技术实践:转文字后自动纠错+润色+分段算法分析
人工智能·算法·小程序
小小谈电商19 小时前
小程序商城源码技术选型:启山智软 / CRMEB / Mall4j 三家深度拆解
小程序
2501_9160074719 小时前
申请 iOS 推送证书并配置 APNs 群发推送教程
android·ios·小程序·https·uni-app·iphone·webview
weixin_BYSJ19872 天前
springboot技能与工具共享小程序---附源码29657
java·javascript·spring boot·python·小程序·django·php
weixin_BYSJ19872 天前
flask民族服饰饰品商城小程序---附源码37399
java·javascript·spring boot·python·小程序·django·php
show4332 天前
2026小程序工具生态技术趋势:轻量化免费替代桌面软件的路径解析
小程序
码云之上2 天前
小程序 iOS 多输入框焦点乱序脱坑记
ios·微信小程序·taro
ON.LIN3 天前
云边去水印小程序详细搭建教程(附源码)
小程序