手机端sticker布局,底部按钮在屏幕底部

Posted 弱水三千,只取一瓢

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了手机端sticker布局,底部按钮在屏幕底部相关的知识,希望对你有一定的参考价值。

<template>
  <div class="product-detail-container">
    <div class="detail">
      <div class="detail-wrapper">
        <div class="detail-main">
          高度没有满屏,则关闭按钮固定在屏幕底部,若满屏,则关闭按钮跟着页面底部
       <!--    <div>
            <p>高度没有满屏,则关闭按钮固定在屏幕底部,若满屏,则关闭按钮跟着页面底部</p>
            <p>高度没有满屏,则关闭按钮固定在屏幕底部,若满屏,则关闭按钮跟着页面底部</p>
            <p>高度没有满屏,则关闭按钮固定在屏幕底部,若满屏,则关闭按钮跟着页面底部</p>
            <p>高度没有满屏,则关闭按钮固定在屏幕底部,若满屏,则关闭按钮跟着页面底部</p>
          </div> -->
        </div>
      </div>
      <div class="detail-close">
        关闭
      </div>
    </div>
  </div>
</template>
<style  lang="scss"  type="text/css" scoped>
   .product-detail-container{
    //即组件最外层div
    position: relative;
    // box-sizing:border-box;
    .detail{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    .detail-wrapper{
      width: 100%;
      min-height: 100%;
      background:green;
      .detail-main{
        // margin-top: 60px; //留出头部的高度
        padding: 0 0 60px 0;//即colse的高度
      }
    }
    .detail-close{
      position: relative;
      width: 64px;
      height: 64px;
      margin: -60px auto; //注意点
      clear: both;
      font-size: 32px;
    }
    }
  }

</style>
<script>
   // 导入要用到的子组件  
    import {mapGetters} from vuex 
    export default {  
    }  
</script>

 

以上是关于手机端sticker布局,底部按钮在屏幕底部的主要内容,如果未能解决你的问题,请参考以下文章

将按钮中间放在手机屏幕底部(无论屏幕大小)

按钮在约束布局中没有完全粘在屏幕底部

如何在嵌套线性布局中将按钮与屏幕底部对齐[重复]

如何使用自动布局将按钮放在屏幕底部

移动端中 H5输入框在弹起键盘后被遮挡

滚动时始终在屏幕底部显示 LinearLayout 中的按钮