收藏
回答

两个滑块的slider

两个滑块的slider怎么弄?

回答关注问题邀请回答
收藏

9 个回答

  • LastLeaf
    LastLeaf
    2017-08-08

    可以用 e.touches / e.changedTouches / wx.createSelectorQuery 来计算位置偏移。

    2017-08-08
    有用
    回复
  • LastLeaf
    LastLeaf
    2017-08-07

    试了一下你的代码,touchend和tap是有的(change事件目前还没有)。但要注意touchend和tap是没有e.detail.value的。

    2017-08-07
    有用
    回复
  • LastLeaf
    LastLeaf
    2017-08-02

    你好,touch类事件可用的。如果有问题,请详细描述问题并附上源代码

    2017-08-02
    有用
    回复
  • LastLeaf
    LastLeaf
    2017-07-31

    你好,没有内置的两滑块slider组件。你可以用movable-view自己实现一个。

    2017-07-31
    有用
    回复
  • 2018-07-20

    @楼主  有两个滑块的代码供参考下么

    2018-07-20
    有用
    回复
  • 。。。
    。。。
    2017-08-07

    没办法获取到位置?

    2017-08-07
    有用
    回复
  • 。。。
    。。。
    2017-08-07

    touch类事件一点反应都没有

     <movable-area style="height: 2rpx;width: 100%;background: #cdcdcd;margin-top:40rpx;">

          <movable-view bindtouchend="touchtap" bindchange="changetap" bindtap="tap" direction="horizontal" style="margin-top:-10rpx;height: 30rpx; width: 30rpx; border-radius:30rpx; background: red;"> </movable-view>  

          <movable-view bindtouchend="touchtap" bindchange="changetap" bindtap="tap" direction="horizontal" style="margin-top:-10rpx;height: 30rpx; width: 30rpx; border-radius:30rpx; background: red;"> </movable-view>  

        </movable-area>


      changetap: function (e) {

        console.log(e.detail.value);

      },

      changetap: function (e) {

        console.log(e.detail.value);

      },

      touchtap: function () {

        console.log(e.detail.value);

      },



    2017-08-07
    有用
    回复
  • 。。。
    。。。
    2017-08-01

    @LastLeaf

    2017-08-01
    有用
    回复
  • 。。。
    。。。
    2017-08-01

    movable-view什么事件监听都没用,实现了样子,功能呢?

    2017-08-01
    有用
    回复
登录 后发表内容