Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
1f9e071b
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
6068
Star
93
Fork
166
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
1f9e071b
编写于
8月 10, 2023
作者:
DCloud-yinjiacheng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更新CSS示例
上级
e00de847
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
85 addition
and
2 deletion
+85
-2
pages.json
pages.json
+14
-2
pages/CSS/layout/visibility.uvue
pages/CSS/layout/visibility.uvue
+37
-0
pages/CSS/text/text-overflow.uvue
pages/CSS/text/text-overflow.uvue
+26
-0
pages/tabBar/CSS.uvue
pages/tabBar/CSS.uvue
+8
-0
未找到文件。
pages.json
浏览文件 @
1f9e071b
...
...
@@ -402,6 +402,12 @@
"navigationBarTitleText"
:
"width"
}
},
{
"path"
:
"pages/CSS/layout/visibility"
,
"style"
:
{
"navigationBarTitleText"
:
"visibility"
}
},
{
"path"
:
"pages/CSS/margin/margin-bottom"
,
"style"
:
{
...
...
@@ -504,6 +510,12 @@
"navigationBarTitleText"
:
"text-align"
}
},
{
"path"
:
"pages/CSS/text/text-overflow"
,
"style"
:
{
"navigationBarTitleText"
:
"text-overflow"
}
},
{
"path"
:
"pages/CSS/text/text-decoration-line"
,
"style"
:
{
...
...
pages/CSS/layout/visibility.uvue
0 → 100644
浏览文件 @
1f9e071b
<template>
<view style="flex-grow: 1;">
<view @click="changeVisibility">
<text>visibility: {{visibility}}(点击切换)</text>
<view class="common" :style="{'visibility': visibility}"></view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
visibility: 'visible',
flag: true
}
},
methods: {
changeVisibility() {
this.flag = !this.flag;
if (this.flag) {
this.visibility = 'visible';
} else {
this.visibility = 'hidden';
}
}
}
}
</script>
<style>
.common {
width: 500rpx;
height: 500rpx;
background-color: red;
}
</style>
\ No newline at end of file
pages/CSS/text/text-overflow.uvue
0 → 100644
浏览文件 @
1f9e071b
<template>
<view style="flex-grow: 1;">
<view style="height: 500rpx;background-color: gray;justify-content: center;align-items: center;">
<text class="common" style="text-overflow: clip;">{{text}}</text>
<text class="common" style="text-overflow: ellipsis;">{{text}}</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
text: 'HBuilderX,轻巧、极速,极客编辑器;uni-app x,终极跨平台方案;uts,大一统语言'
}
}
}
</script>
<style>
.common {
width: 500rpx;
height: 60rpx;
font-size: 20px;
}
</style>
\ No newline at end of file
pages/tabBar/CSS.uvue
浏览文件 @
1f9e071b
...
...
@@ -167,6 +167,10 @@
{
name: 'width',
url: '/pages/CSS/layout/width'
},
{
name: 'visibility',
url: '/pages/CSS/layout/visibility'
}
] as Page[]
}, {
...
...
@@ -252,6 +256,10 @@
name: 'text-align',
url: '/pages/CSS/text/text-align'
},
{
name: 'text-overflow',
url: '/pages/CSS/text/text-overflow'
},
{
name: 'text-decoration-line',
url: '/pages/CSS/text/text-decoration-line'
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录