微信小程式 scroll-view 滑動可視區域
阿新 • • 發佈:2018-12-14
微信小程式 sroll-view css屬性設定注意事項
1.sroll-view 必須設定 white-space: nowrap 段落文字中不換行
2.子元素需要設定為 內聯塊元素 display:inline-block;
3.滑動 list 最外層元素可以新增 移除隱藏避免內容超出 導致排版亂掉 overflow:hidden;
4.內聯塊元素 無法設定margin-top與margin-right 可以使用padding-top與padding-bottom
<view class='follow-houses-view'> <view class='follow-title'>最新資訊</view> <view class='follow-houses'> <scroll-view class="scroll-view_H" scroll-x="true" scroll-with-animation="true" style="white-space: nowrap;" > <view id="green" class="follow-scroll" > <view class='follow-info-top'> <image class='follow-info-img' src='https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1541743618589&di=d2c030db652c4f9749c4d75db6394fbb&imgtype=0&src=http%3A%2F%2Fimg.guidaye.com%2F8feb1093d6ade22720c2b3ce28c6c53d.jpg' ></image> <view class='follow-houses-info'> <view class='follow-name'>樓盤</view> <view class='follow-position'>長寧區</view> <view class='follow-show-icon'> </view> <view class='follow-user-num'>200</view> </view> </view> <view class='follow-info-top'> <image class='follow-info-img' src='https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1541743618589&di=d2c030db652c4f9749c4d75db6394fbb&imgtype=0&src=http%3A%2F%2Fimg.guidaye.com%2F8feb1093d6ade22720c2b3ce28c6c53d.jpg' ></image> <view class='follow-houses-info'> <view class='follow-name'>樓盤</view> <view class='follow-position'>長寧區</view> <view class='follow-show-icon'> </view> <view class='follow-user-num'>200</view> </view> </view> </view> </scroll-view> </view> </view>
CSS程式碼:
.follow-houses-view{ width: 100%; margin: 20rpx 0 20rpx 0; height: 510rpx; /* background-color: cornflowerblue; */ } .follow-title{ width: 100%; height: 50rpx; font-size: 30rpx; font-weight: 600; color: #fff; text-align: center; line-height: 50rpx; background-color: #4B5B77 ; } .follow-houses{ width: 100%; height: 450rpx; margin-top: 10rpx; background-color: #E2DCE2; } .follow-scroll{ width:355rpx; height: 450rpx; text-align: center; display: inline-block; margin-left: 10rpx; margin-right: 10rpx; /* background-color: hotpink; */ overflow:hidden; font-size: 0; } .follow-info-top{ width: 100%; height: 195rpx; margin-top: 30rpx; /* background-color: cornflowerblue; */ } .follow-info-img{ width: 100%; height: 145rpx; } .follow-houses-info{ width: 100%; height: 50rpx; white-space: nowrap; line-height: 50rpx; background-color: #fff; position: relative; } .follow-name{ width: 150rpx; font-size: 25rpx; display: inline-block; height: 50rpx; overflow:hidden; text-overflow:ellipsis; text-align:left; } .follow-position{ width: 65rpx; height: 50rpx; font-size: 18rpx; display: inline-block; overflow:hidden; text-overflow:ellipsis; text-align:left; } .follow-show-icon{ position: absolute; top: 10rpx; right:80rpx; height: 30rpx; width: 30rpx; background-image: url("https://cangsheng77.cn/csbz154155951220181107105807.png"); background-repeat:no-repeat; background-size:100% 100%;-moz-background-size:100% 100%; display: inline-block; } .follow-user-num{ width: 70rpx; margin-left: 60rpx; font-size: 25rpx; display: inline-block; overflow:hidden; text-align:right; }