如图,如果滑动到最右侧,继续滑动切换会出现白色区域(不使用衔接)。这样体验很不好,
官方能不能让 切换到最左或最右,不出现白色区域吗?
非常感谢!
如图,如果滑动到最右侧,继续滑动切换会出现白色区域(不使用衔接)。这样体验很不好,
官方能不能让 切换到最左或最右,不出现白色区域吗?
非常感谢!
applida_tj - applida
折腾了几个小时,微信开发工具显示没有问题,手机显示有问题,最后排查,图片的mode="scaleToFill",这样设置,让图片铺满就不会有白边了。
===========代码参考====================
<template>
<view>
<swiper :style="{'height':height,'width':'100%'}" circular indicator-dots autoplay>
<swiper-item v-for=" item in list" :key="item.id">
<view :style="{'height':height,'display':'block','lineHeight':height,'textAlign':'center'}"
@click="onClick(item)">
<image :src="`${baseUrl}/image/info/download/${item.imageId}`" :style="{'height':height,width:'100%'}"
mode="scaleToFill">
</image>
</view>
</swiper-item>
</swiper>
</view>
</template>