设置的scrollHeight就是一个正确的高度
最大盒子要100%高度,scroll-view的宽度不能设置固定宽度; <scroll-view class="bottomBox" scroll-x="true" @scroll="scroll"> <view @click="go(i)" class="commodity" v-for="(item,i) in list" :key="i"> {{item.title}} </view> </scroll-view> list: [ { id: 1, title: "111" },...
align-items: flex-start;加上这个 因为flex布局下默认stretch会自动填满高度 再加计算得出高度 导致无限...
初始化、动态设置 state.scrollTop 的值为当前时间戳(绝不重复,绝对够大) const state = reactive({ scrollTop: new Date().getTime() }) 3、注意 scroll-with-animation 值为false 会导致容器动态计算高度时,滚动异常 scroll-top 缺点,当聊天记录少时,可能出现不满页也出现滚动过的现象最后...
::-webkit-scrollbar { display: none;width: 0 !important;height: 0 !important;-webkit-appearance: none;background: transparent;color: transparent;} 记得在红⾊框也就是最外层加⼀个最⼤⾼度哦,超过最⼤⾼度再滚动。后来测试了下,在APP和⼩程序运⾏时会出现兼容性问题,在样式中引⽤...
最近在做个直播间,有个这样的需要,就是进入到页面,<scroll-view>需要滚动到最底部,并且发送消息之后自动的滚动到底部。 开始想着计算里面内容的高度,然后通过设置 scroll-top 的值,达到这个效果。在网上搜一圈,大多也是采取的这种方案。但是感觉这个方案略麻烦。想另寻一条解决方案。