赞
踩
<style>
page {
background: linear-gradient(to bottom right, #191A2C, #514B67);
//从左上到右下颜色逐渐变浅
}
</style>
如果此时页面内容没有到底部的话会成这个样子
有很明显的断层,体验不好
<style>
page {
height: 1250rpx;//试了一下刚好铺满页面
background: linear-gradient(to bottom right, #191A2C, #514B67);
}
</style>
<scroll-view class="school_group2" scroll-y="true" :show-scrollbar="true">
...
<scroll-view>
.school_group2 {
height: 830rpx;
}
这样上下滑动的时候就只会滑动scrollview而不是滑动页面了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。