zoukankan      html  css  js  c++  java
  • uniapp实现头部、底部固定,中间滚动的布局

    参考地址:https://blog.csdn.net/lll_liuhui/article/details/87923041

    <template>
      <view class="scrool-page">
    	<view class="header-cont">头部</view>
            <view class="list-cont">
    	      <scroll-view class="scrool-more" style="height: 100%" scroll-y="true" scroll-with-animation="true">
    		   <view lass="list" v-for="(item,index) in list" :key="index">
    			{{item.cont}}
    		   </view>
    	      </scroll-view>
    	 </view>
    
    	  <view class="footer">
    		<button type="primary">提交</button>
    	 </view>
    
       </view>
    </template>
    
    <script>
    export default {
    	data() {
    return {
    list: [{
    		cont: "张三"
    	},
    	{
    		cont: "张三"
    	},
    	{
    		cont: "张三"
    	},
    	{
    		cont: "张三"
    	},
    
    	{
    		cont: "张三"
    	},
    	{
    		cont: "张三"
    	},
    	{
    		cont: "张三"
    	},
    	{
    		cont: "张三"
    	},
    
    	{
    		cont: "张三"
    	},
    	{
    		cont: "张三"
    	},
    	{
    		cont: "张三"
    	},
    	{
    		cont: "张三"
    	},
    	{
    		cont: "张三"
    	},
    	{
    		cont: "张三"
    	},
    	{
    		cont: "张三=="
    	},
    ]
    }
    }
    }
    </script>
    
    <style lang="less">
    page {
    	 100%;
    	height: 100%;
    }
    
    
    .scrool-page {
    	display: flex;
    	flex-direction: column;
    	 100%;
    	height: 100%;
    }
    
    .header-cont {
    	 100%;
    	height: 110rpx;
    	line-height: 100rpx;
    	text-align: center;
    	background: red;
    }
    
    .list-cont {
    	flex: 1;
    	position: relative;
    
    	.scrool-more {
    		position: absolute;
    		left: 0;
    		right: 0;
    		top: 0;
    		bottom: 0;
    	}
    
    	.list {
    		height: 80rpx;
    		line-height: 80rpx;
    		text-align: center;
    		background: #e0e0e0;
    
    	}
    }
    
    
    .footer {
    	color: #fff;
    	line-height: 100rpx;
    	flex: 0 0 100rpx;
    	/* 不放大不缩小固定100rpx */
    }
    </style>
    

    作者:流年少年
    出处:https://www.cnblogs.com/ishoulgodo/

    想问问题,打赏了卑微的博主,求求你备注一下的扣扣或者微信;这样我好联系你;(っ•̀ω•́)っ✎⁾⁾!

    如果觉得这篇文章对你有小小的帮助的话,记得在右下角点个“推荐”哦,或者关注博主,在此感谢!

    万水千山总是情,打赏5毛买辣条行不行,所以如果你心情还比较高兴,也是可以扫码打赏博主(っ•̀ω•́)っ✎⁾⁾!

    想问问题,打赏了卑微的博主,求求你备注一下的扣扣或者微信;这样我好联系你;(っ•̀ω•́)っ✎⁾⁾!

    支付宝
    微信
    本文版权归作者所有,欢迎转载,未经作者同意须保留此段声明,在文章页面明显位置给出原文连接
    如果文中有什么错误,欢迎指出。以免更多的人被误导。
  • 相关阅读:
    CentOS7 配置163 yum源(详细步骤)
    从构建分布式秒杀系统聊聊分布式锁
    互联网架构“高并发”
    互联网架构“高可用”
    FineCMS
    layUI表单事件监听-事件监听机制简化处理
    界面优雅的UI框架layUI
    如果OCX使用onmousedown和onmouseup来决定指令发送和指令停止会不会有问题?
    CSS字体库font-face用法及跨域问题
    RequireJS被外部调用
  • 原文地址:https://www.cnblogs.com/ishoulgodo/p/13616461.html
Copyright © 2011-2022 走看看