收藏
回答

v0.12.130601 beta版 工具bug

微信web开发者工具 v0.12.130601


 scroll-view 滑动回弹,总是弹回到起始位置


安装正式版本无此问题


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

2 个回答

  • 黄思程
    黄思程
    2017-01-09

    能否看看给下示例代码看看

    2017-01-09
    有用
    回复
  • 2017-01-09

    js中:

    data: {     list:[]    },onLoad:function(){

        let that=this,i=0,list=[];

        for(;i<20;i++){

            list.push({name: '名称1',id:i}});

        }

        that.setData({

            list:list

        })

    }

    wxml中:

    <view class="header">

        <scroll-view class="sv_container" scroll-x="true">

          <block wx:for="{{list}}" wx:key="{{item.id}}">

            <view class="sv_item" data-id="{{ item.id }}">

              {{ item.name }}

            </view>

          </block>

        </scroll-view>

      </view>

    wxss中:

    .header{

        width: 100%;

        background-color: #333;

        font-size: 30rpx;

        height: 70rpx;

        line-height: 70rpx;

        position: relative;

        color: #fff;

        box-sizing: border-box;

    }

    .sv__container{

        width: 100%;

        height: 70rpx;

        white-space: nowrap;

    }

    .sv__item{

        padding:  0  24rpx;

        display: inline-block;

    }



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