
小程序
廖松洋(Alina)
这个作者很懒,什么都没留下…
展开
-
小程序-主题
<view class="theme-view home-view"> <view class="theme-view-item" wx:for="{{themeArr}}" wx:key> <image class="theme-view-item-img" src="{{item.url}}" mode='aspectFill'></image> <text class="theme-view-item-text"&g...原创 2021-09-23 09:48:01 · 648 阅读 · 0 评论 -
小程序-搜索框
<view class="titleBar-view " style="margin-top:{{heightTop}}px"> <view class="titleBar-input"> <image class="titleBar-img" src="../../images/home/search.png" mode="aspectFit"></image> <text class="titleBar-text...原创 2021-09-23 09:46:24 · 108 阅读 · 0 评论 -
小程序-首页小列表查看更多
<view class="brand-view home-view"> <view class="brand-view-head"> <view> <text class="brand-view-head-text">热搜品牌 </text> <image class="brand-view-head-img" src="../../images/home/hot.png"></im...原创 2021-09-23 09:44:49 · 223 阅读 · 0 评论 -
小程序-轮播图
<!-- 滑动轮播图 --><swiper class='swiper-img-view home-view' indicator-dots='{{indicatorDotsTrue}}' circular='true' interval="3000" duration="500 "> <block wx:for="{{images}}" wx:key> <swiper-item> <image src="{{ite...原创 2021-09-23 09:42:41 · 101 阅读 · 0 评论 -
小程序-标签2
<view class="home-pool-view-all"> <view class="home-pool-item"> <view class="home-pool-tag-item" wx:for="{{poolArr }}">{{item.text}}</view> </view> </view>.home-pool-view { margin-bottom: 20rpx...原创 2021-09-23 09:40:38 · 94 阅读 · 0 评论 -
小程序-标签
<view class="home-tag-view-all home-view "> <view class="home-tag-view "> <view class="home-tag-item" wx:for="{{textArr}}">{{item.text}}</view> </view></view>.home-tag-view-all{ margin-bottom: 20rpx;...原创 2021-09-23 09:39:00 · 86 阅读 · 0 评论 -
小程序-tab
.home-nav-view { background: #ffffff; padding: 0rpx 30rpx 0rpx; line-height: 66rpx; padding-top: 15rpx; height: 96rpx; margin-bottom: 20rpx;}.home-nav-list { color: #4A4A4A;}.home-nav-cur { font-size: 28rpx; font-weight: bold;...原创 2021-09-23 09:37:22 · 117 阅读 · 0 评论 -
关于input 键盘右下方confirm-type=‘search‘ 点击事件【小程序】
bindconfirm='confirmTap' 用bindconfirm示例<input confirm-type='search' bindconfirm='confirmTap' placeholder="输入课本名称 出版社 年级" class='bookss-input'></input>confirmTap:function(){console.log(event.detail.value);},...原创 2021-05-26 17:51:51 · 926 阅读 · 0 评论