美文网首页
小程序悬浮按钮进入内页

小程序悬浮按钮进入内页

作者: linwene | 来源:发表于2018-10-04 10:57 被阅读0次

wxml:

    <!-- 小程序悬浮按钮进入内页 -->
    <navigator class="set_button" url='../set/set' hover-class='none'>
      <image class="set_image" src="/images/set.png"></image>
    </navigator>

wxss:

    .set_button{
      background-color: rgba(255, 255, 255, 0);
      border: 0px;
      height: 120rpx;
      right: 20rpx;
      bottom: 20rpx;
      position: fixed;
    }
    .set_button::after{
      border: 0px;
    }
    .set_image{
      width: 120rpx;
      height: 120rpx;
    }

相关文章

网友评论

      本文标题:小程序悬浮按钮进入内页

      本文链接:https://www.haomeiwen.com/subject/yahxaftx.html