可以呀?给你个简单的效果
wxml 的代码
<view>
<view id="content"></view>
</view>
wxss的代码
view{
height: 100vh;
background-color: red;
}
#content{
width: 100%;
height: 2000px;
background-image: linear-gradient(red, yellow, blue);
}
js代码
// pages/test/test.js
Page({
/**
* 页面的初始数据
*/
data: {
msg: 'hellow world'
},
onPageScroll() {
console.log(this.data.msg)
}
})
亲测有效