Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
6fe328f9
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
6fe328f9
编写于
8月 25, 2023
作者:
DCloud-yyl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add: CSS中display示例
上级
bcbe5c45
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
141 addition
and
2 deletion
+141
-2
pages.json
pages.json
+14
-2
pages/CSS/display/flex.uvue
pages/CSS/display/flex.uvue
+56
-0
pages/CSS/display/none.uvue
pages/CSS/display/none.uvue
+56
-0
pages/tabBar/CSS.uvue
pages/tabBar/CSS.uvue
+15
-0
未找到文件。
pages.json
浏览文件 @
6fe328f9
...
@@ -348,6 +348,18 @@
...
@@ -348,6 +348,18 @@
"navigationBarTitleText"
:
"box-shadow"
"navigationBarTitleText"
:
"box-shadow"
}
}
},
},
{
"path"
:
"pages/CSS/display/flex"
,
"style"
:
{
"navigationBarTitleText"
:
"display:flex"
}
},
{
"path"
:
"pages/CSS/display/none"
,
"style"
:
{
"navigationBarTitleText"
:
"display:none"
}
},
{
{
"path"
:
"pages/CSS/flex/align-content"
,
"path"
:
"pages/CSS/flex/align-content"
,
"style"
:
{
"style"
:
{
...
@@ -808,8 +820,8 @@
...
@@ -808,8 +820,8 @@
"navigationBarTitleText"
:
"自定义下拉刷新的scroll-view属性示例"
,
"navigationBarTitleText"
:
"自定义下拉刷新的scroll-view属性示例"
,
"enablePullDownRefresh"
:
false
"enablePullDownRefresh"
:
false
}
}
}
}
,
],
],
"globalStyle"
:
{
"globalStyle"
:
{
"pageOrientation"
:
"portrait"
,
"pageOrientation"
:
"portrait"
,
"navigationBarTitleText"
:
"Hello uniapp x"
,
"navigationBarTitleText"
:
"Hello uniapp x"
,
...
...
pages/CSS/display/flex.uvue
0 → 100644
浏览文件 @
6fe328f9
<template>
<!-- #ifdef APP -->
<view class="page" style="flex:1">
<!-- #endif -->
<view class="head">
<text class="tip">下面有一个灰色区域,display默认值为flex</text>
<text class="tip">当前display值:{{display}}</text>
</view>
<view class="content" :style="{display:display}">
<text style="background-color: aquamarine;">展示display区域</text>
</view>
<button @tap="switchDisplay">切换display属性</button>
<!-- #ifdef APP -->
</view>
<!-- #endif -->
</template>
<script>
export default {
data() {
return {
display: 'flex'
}
},
methods: {
switchDisplay() {
this.display = ('flex'==this.display)?'none':'flex';
}
}
}
</script>
<style>
.page {
align-items: center;
height: 100%;
}
.head {
margin-top: 10px;
margin-bottom: 10px;
align-items: center;
}
.tip {
color: red;
}
.content {
border: 10rpx dotted blue;
margin: 50px 0px;
padding: 50px;
width: 200px;
height: 200px;
background-color: gray;
align-items: center;
justify-content: center;
}
</style>
pages/CSS/display/none.uvue
0 → 100644
浏览文件 @
6fe328f9
<template>
<!-- #ifdef APP -->
<view class="page" style="flex:1">
<!-- #endif -->
<view class="head">
<text class="tip">下面有一个灰色区域,display默认值为none</text>
<text class="tip">当前display值:{{display}}</text>
</view>
<view class="content" :style="{display:display}">
<text style="background-color: aquamarine;">展示display区域</text>
</view>
<button @tap="switchDisplay">切换display属性</button>
<!-- #ifdef APP -->
</view>
<!-- #endif -->
</template>
<script>
export default {
data() {
return {
display: 'none'
}
},
methods: {
switchDisplay() {
this.display = ('flex'==this.display)?'none':'flex';
}
}
}
</script>
<style>
.page {
align-items: center;
height: 100%;
}
.head {
margin-top: 10px;
margin-bottom: 10px;
align-items: center;
}
.tip {
color: red;
}
.content {
border: 10rpx solid blue;
margin: 50px 0px;
padding: 50px;
width: 200px;
height: 200px;
background-color: gray;
align-items: center;
justify-content: center;
}
</style>
pages/tabBar/CSS.uvue
浏览文件 @
6fe328f9
...
@@ -119,6 +119,21 @@
...
@@ -119,6 +119,21 @@
},
},
] as Page[],
] as Page[],
},
},
{
id: 'display',
name: 'display',
open: false,
pages: [
{
name: 'flex',
url: '/pages/CSS/display/flex',
},
{
name: 'none',
url: '/pages/CSS/display/none',
}
] as Page[],
},
{
{
id: 'flex',
id: 'flex',
name: 'flex',
name: 'flex',
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录