您的当前位置:首页正文

微信小程序-顶部或底部固定,中间内容可以滚动

2024-12-01 来源:个人技术集锦

1.顶部固定

<view class="top" style="width:100%;height:80px;border-top:1px solid red;background-color:#f0f0f0;position:fixed;top:0;">
 顶部固定
</view>

2.底部固定

<view class="bottom" style="width:100%;height:80px;border-top:1px solid red;background-color:#f0f0f0;position:fixed; bottom:0;">
 底部固定
</view>

 

显示全文