uni-app设置页面背景及背景图片
生活随笔
收集整理的這篇文章主要介紹了
uni-app设置页面背景及背景图片
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
設置背景
1、設置背景色:
<template>
<view class="container"> //最外層
<view class="bg-set"></view> //此標簽為最外層view標簽的第一個子標簽
<view class="content"></view>
</view>
</template>
.bg-set{
position: fixed;
100%;
height: 100%;
top: 0;
left: 0;
background-color: #f4f4f4;
z-index: -1;
}
2、設置背景圖
<template>
<view class="container">
<image class="bg-set" src="https://img-1258.file.myqcloud.com/bg.png"></image>
<view class="content"></view>
</view>
</template>
.bg-set{
position: fixed;
100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
}
以上想法引自 https://www.cnblogs.com/swordLaughsHeaven/p/12118562.html 并略作修改
官網方式:
1、在 uni-app 中不能使用 * 選擇器。
2、page 相當于 body 節點,例如
<!-- 設置頁面背景顏色 -->
page {
background-color:#ccc;
}
或者在globalSTyle中配置: https://uniapp.dcloud.io/collocation/pages?id=style
個人沒仔細研究,覺得局限還是有的
總結
以上是生活随笔為你收集整理的uni-app设置页面背景及背景图片的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 细说tomcat之应用监控
- 下一篇: html根据下拉框选中的值修改背景颜色