uniapp超实用页面三层架构(背景层+模糊层+内容层)
Posted Rose✿留白ق೨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uniapp超实用页面三层架构(背景层+模糊层+内容层)相关的知识,希望对你有一定的参考价值。
更新:固定高度 + 滚动条,解决内容超出问题(内容不超出可以去掉)
<template>
<view>
<view class="bottom"></view>
<view class="middle"></view>
<view class="content"> info.vue </view>
</view>
</template>
<script>
export default
data()
return ;
,
methods: ,
;
</script>
<style lang="scss" scoped>
.bottom,
.middle
position: absolute;
height: calc(100vh - 88rpx);
width: 100%;
.bottom
background-image: url("/static/images/index.png");
background-size: 100% 100%;
.middle
background-color: rgba(255, 255, 255, 0.6);
.content
position: absolute;
//height: calc(100vh - 88rpx);overflow: scroll;固定高度 + 滚动条,解决内容超出问题(内容不超出可以去掉)
height: calc(100vh - 88rpx);
overflow: scroll;
</style>
效果图:
以上是关于uniapp超实用页面三层架构(背景层+模糊层+内容层)的主要内容,如果未能解决你的问题,请参考以下文章
温故而知新---浅析三层架构(一个超简单的系统登录三层架构实例)
(超简单基础版)ASP.NET(.Net Framework)三层架构,结合sql server实现登录与注册