誓言再羙丶抵不过流言似水 2021-09-01 15:01 采纳率: 33.3%
浏览 98
已结题

谁知道这个效果怎么实现!!求告知

选择后效果如图所示:(微信小程序),求各位告知!谢谢各位!感激不尽
img

  • 写回答

3条回答 默认 最新

  • CSDN专家-showbo 2021-09-01 15:02
    关注

    DMEO如下,有帮助麻烦点个采纳【本回答右上角】,谢谢~~

    img

    demo.js

    
    Page({
      data: {
        hours:[11,12,13,14,15],
        counter:0,
        startIndex:-1,
        endIndex:-1
      }, 
     setClick(e){
       var ds=e.target.dataset;
       this.data[this.data.counter==0?'startIndex':'endIndex']=ds.index;
       this.data.counter++;
       console.log(JSON.stringify(this.data))
       if(this.data.counter>2){//点2次后重置
         this.data.counter=1;
         this.data.startIndex=ds.index;
         this.data.endIndex=-1;
       }
       this.setData({counter:this.data.counter,startIndex:this.data.startIndex,endIndex:this.data.endIndex})
     }
     
    })
     
    
    

    demo.wxss

    page{background:#eee}
    .container{background:#fff;border-radius:15px;padding:10px;max-width:90%;margin:20px auto;display:flex;}
    .container .item{border-radius: 15px;line-height:40px;font-size:18px;padding:15px;height:40px}
    .container .active{background:#5bcaff;line-height:15px}
    .container .active::after{content:'开始';display: block;margin-top:10px;text-align:center;}
    .container .end::after{content:'结束';}
    
    
    

    demo.wxml

    <view class="container">
         <view class="item{{startIndex==index?' active':''}}{{endIndex==index?' active end':''}}" data-index="{{index}}" wx:for="{{hours}}" bindtap="setClick">{{item}}</view>
      </view>
    
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

问题事件

  • 系统已结题 9月10日
  • 已采纳回答 9月2日
  • 创建了问题 9月1日

悬赏问题

  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值