💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## :-: scroll-view可滚动视图区域。 >[danger] 说明:可滚动视图区域。 >[success] scroll-view内的内容必须为内联标签或内联块 >[info]使用竖向滚动时,需要给一个固定高度 **具体属性看[这里](https://developers.weixin.qq.com/miniprogram/dev/component/scroll-view.html)** ### demo: ``` //index.wxml <scroll-view class="scroll" scroll-x="true"> <view class="performer" wx:for="{{casts}}" wx:key="index"> <image src="{{item.avatars.small}}"></image> <view id="txt">{{item.name}}</view> </view> </scroll-view> ``` ``` //index.wxss .score{ display: flex; align-items: center; } .score>view{ margin-left: 40rpx; } ```