小程序
小游戏
企业微信
微信支付
扫描小程序码分享
版本信息:微信web开发者工具 v0.12.130601
scroll-view 滑动回弹,总是弹回到起始位置
安装正式版本无此问题
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
能否看看给下示例代码看看
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
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>
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{
white-space: nowrap;
.sv__item{
padding: 0 24rpx;
display: inline-block;
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
能否看看给下示例代码看看
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;
}