微信小程序仿淘宝热搜词在搜索框中轮播功能


Posted in Javascript onJanuary 21, 2020

摘要

逛淘宝的时候,发现淘宝搜索框中一直在垂直方向上轮播热搜提示词,觉得这是个不错的设计,除了能让空间更充分使用,也能让页面更有动感,最重要的是能够增加搜索框的使用频率。就在小程序中试着实现实现。

效果

微信小程序仿淘宝热搜词在搜索框中轮播功能

体验

微信小程序仿淘宝热搜词在搜索框中轮播功能

实现思路

思路比较简单,主要是两点,

1:input处于热搜提示词上层,用z-index实现
2:热搜词轮播用swiper实现,方向为vertical
3:在input聚焦时获取swiper当前值,设置为placeholder
4:将swiper隐藏

代码

已封装成组件

组件代码:

wxss

<view class="swiper-view">
 <swiper class="swiper_container" vertical="true" autoplay="true" circular="true" interval="2000">
  <block wx:for="{{msgList}}">
   <swiper-item>
    <view class="swiper_item">{{item.title}}</view>
   </swiper-item>
  </block>
 </swiper>
</view>

wxss

.container {
 width: 100%;
 height: 80rpx;
 display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
 background: #ededed;
}

.search-container {
 width: 690rpx;
 height: 60rpx;
 display: flex;
 flex-direction: row;
 justify-content: flex-start;
 align-items: center;
 background: #fff;
 border-radius: 5rpx;
}

.swiper_container {
 margin-left: 15rpx;
 height: 60rpx;
 width: 100%;
 display: flex;
 flex-direction: row;
 justify-content: flex-start;
 align-items: center;
 position:absolute;
 z-index:1;
}

.swiper_item {
 height: 60rpx;
 font-size: 26rpx;
 color: #999;
 overflow: hidden;
 text-overflow: ellipsis;
 white-space: nowrap;
 display: flex;
 flex-direction: row;
 justify-content: flex-start;
 align-items: center;
}

js

Component({
 /**
  * 组件的属性列表
  */
 properties: {
  msgList:{
   type:JSON,
   value: []
  }
 },

 /**
  * 组件的初始数据
  */
 data: {
  placeholder:'',
  currentIndex:0,
  index:0,
  isFocus:false,
  msgList: [],
  content:'',
  confirmContent:''
 },

 ready(){
  this.setData({
   msgList:this.properties.msgList
  })
 },
 /**
  * 组件的方法列表
  */
 methods: {
  changeIndex(e){
   this.setData({
    index:e.detail.current
   })
  },
  focusInput(){
   this.setData({
    isFocus:true,
    placeholder:this.data.msgList[this.data.index].title
   })
  },
  blurInput(){
   if (this.data.content == ""){
    this.setData({
     isFocus: false,
     currentIndex: this.data.index,
     placeholder: ''
    })
   }
  },
  confirm(e){
   var confirmContent = ''
   if(e.detail.value==''){
    confirmContent = this.data.placeholder
   }else{
    confirmContent = e.detail.value
   }

   this.triggerEvent('search', {confirmContent})
  },
  inputContent(e){
   this.setData({
    content: e.detail.value
   })
  }
 }
})

json

{
 "component": true,
 "usingComponents": {}
}

页面代码

js

Page({
 data: {
  msgList: [
   { title: "朋友圈" },
   { title: "文章" },
   { title: "公共号" },
   { title: "小程序" },
   { title: "音乐" },
   { title: "表情" },
   { title: "订阅号" }]
 },
 search(e){
  wx.showToast({
   icon:"none",
   title: "正在搜索"+e.detail.confirmContent,
  })
 }
})

wxss

<swiperSearch msgList="{{msgList}}" bind:search="search"></swiperSearch>

总结

以上所述是小编给大家介绍的微信小程序仿淘宝热搜词在搜索框中轮播功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

Javascript 相关文章推荐
关于文本框的一些限制控制总结~~
Apr 15 Javascript
JS 两日期相减,获得天数的小例子(兼容IE,FF)
Jul 01 Javascript
jQuery设置和获取HTML、文本和值示例
Jul 08 Javascript
PHP+MySQL+jQuery随意拖动层并即时保存拖动位置实例讲解
Oct 09 Javascript
JavaScript编程中布尔对象的基本使用
Oct 25 Javascript
浅谈js的url解析函数封装
Jun 28 Javascript
浅谈JavaScript 中有关时间对象的方法
Aug 15 Javascript
js 中获取制定的cook信息实现方法
Nov 19 Javascript
Angular和Vue双向数据绑定的实现原理(重点是vue的双向绑定)
Nov 22 Javascript
详解angular2采用自定义指令(Directive)方式加载jquery插件
Feb 09 Javascript
json 带斜杠时如何解析的实现
Aug 12 Javascript
vue 实现根据data中的属性值来设置不同的样式
Aug 04 Javascript
微信小程序swiper实现文字纵向轮播提示效果
Jan 21 #Javascript
jquery将信息遍历到界面上实例代码
Jan 21 #jQuery
微信浏览器下拉黑边解决方案 wScroollFix
Jan 21 #Javascript
修改vue源码实现动态路由缓存的方法
Jan 21 #Javascript
微信小程序图片自适应实现解析
Jan 21 #Javascript
微信小程序button标签open-type属性原理解析
Jan 21 #Javascript
Vue实现兄弟组件间的联动效果
Jan 21 #Javascript
You might like
php 各种应用乱码问题的解决方法
2010/05/09 PHP
php中获取指定IP的物理地址的代码(正则表达式)
2011/06/23 PHP
php截取中文字符串不乱码的方法
2013/12/25 PHP
php实现的数字验证码及数字运算验证码
2015/07/30 PHP
php 使用 __call实现重载功能示例
2019/11/18 PHP
PHP中类与对象功能、用法实例解读
2020/03/27 PHP
jQuery代码优化之基本事件
2011/11/01 Javascript
js Array对象的扩展函数代码
2013/04/24 Javascript
js向上无缝滚动,网站公告效果 具体代码
2013/11/18 Javascript
jquery中$each()方法的使用指南
2015/04/30 Javascript
JS面试题---关于算法台阶的问题
2016/07/26 Javascript
JS排序之快速排序详解
2017/04/08 Javascript
nodejs结合socket.io实现websocket通信功能的方法
2018/01/12 NodeJs
Vue props 单向数据流的实现
2018/11/06 Javascript
谈谈React中的Render Props模式
2018/12/06 Javascript
JavaScript Array对象使用方法解析
2019/09/24 Javascript
在react中使用vue的状态管理的方法示例
2020/05/02 Javascript
浅谈Vue 函数式组件的使用技巧
2020/06/16 Javascript
在Python的Flask框架中使用模版的入门教程
2015/04/20 Python
python基本语法练习实例
2017/09/19 Python
pandas series序列转化为星期几的实例
2018/04/11 Python
Numpy数据类型转换astype,dtype的方法
2018/06/09 Python
pandas 条件搜索返回列表的方法
2018/10/30 Python
OpenCV模板匹配matchTemplate的实现
2019/10/18 Python
CSS3教程(5):网页背景图片
2009/04/02 HTML / CSS
德国亚洲食品网上商店:asiafoodland.de
2019/12/28 全球购物
自我鉴定的范文
2013/10/03 职场文书
优秀的自荐信要注意哪些
2014/01/03 职场文书
眼镜促销方案
2014/03/15 职场文书
幼儿园教师的自我评价范文
2014/09/17 职场文书
加强作风建设心得体会
2014/10/22 职场文书
人事专员岗位职责
2015/02/03 职场文书
2015年初中生自我评价范文
2015/03/03 职场文书
2016个人廉洁自律承诺书
2016/03/25 职场文书
六年级作文之自救
2019/12/19 职场文书
win10重装系统后上不了网怎么办 win10重装系统网络故障的解决办法
2022/07/23 数码科技