1. 程式人生 > >微信小程式固定按鈕

微信小程式固定按鈕

用position : fixed;

  1. <view class='add_btn'>

  2. <button class='btn'>

  3. 按鈕

  4. </button>

  5. </view>

.add_btn{     width: 100%;     position: fixed;     bottom: 30rpx;底部固定不隨滑動而動 } .btn{     margin-top: 30rpx;     width: 450rpx;     background: #14a1fd;     color: #fff;     border-radius: 70rpx; }