Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
e09f9164
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看板
提交
e09f9164
编写于
9月 23, 2023
作者:
xuty73419315
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加border-style
上级
3dfd94fc
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
22 addition
and
18 deletion
+22
-18
pages/CSS/border/border-color.uvue
pages/CSS/border/border-color.uvue
+5
-5
pages/CSS/border/border-width.uvue
pages/CSS/border/border-width.uvue
+5
-5
pages/CSS/border/complex-border/complex-border.uvue
pages/CSS/border/complex-border/complex-border.uvue
+5
-3
pages/component/scroll-view/scroll-view-props.uvue
pages/component/scroll-view/scroll-view-props.uvue
+4
-3
pages/component/scroll-view/scroll-view-refresher-props.uvue
pages/component/scroll-view/scroll-view-refresher-props.uvue
+3
-2
未找到文件。
pages/CSS/border/border-color.uvue
浏览文件 @
e09f9164
...
...
@@ -7,7 +7,7 @@
<text>border-color: red</text>
<view
class="common"
style="border-width: 10rpx; border-color: red"
style="border-width: 10rpx; border-color: red
; border-style: solid;
"
></view>
</view>
...
...
@@ -15,7 +15,7 @@
<text>border-left-color: red</text>
<view
class="common"
style="border-left-width: 10rpx; border-left-color: red"
style="border-left-width: 10rpx; border-left-color: red
; border-left-style:solid;
"
></view>
</view>
...
...
@@ -23,7 +23,7 @@
<text>border-top-color: green</text>
<view
class="common"
style="border-top-width: 10rpx; border-top-color: green"
style="border-top-width: 10rpx; border-top-color: green
; border-top-style: solid;
"
></view>
</view>
...
...
@@ -31,7 +31,7 @@
<text>border-right-color: yellow</text>
<view
class="common"
style="border-right-width: 10rpx; border-right-color: yellow"
style="border-right-width: 10rpx; border-right-color: yellow
; border-right-style: solid;
"
></view>
</view>
...
...
@@ -39,7 +39,7 @@
<text>border-bottom-color: blue</text>
<view
class="common"
style="border-bottom-width: 10rpx; border-bottom-color: blue"
style="border-bottom-width: 10rpx; border-bottom-color: blue
; border-bottom-style: solid;
"
></view>
</view>
</view>
...
...
pages/CSS/border/border-width.uvue
浏览文件 @
e09f9164
...
...
@@ -5,27 +5,27 @@
<view style="flex-grow: 1">
<view>
<text>border-width: 10rpx</text>
<view class="common" style="border-width: 10rpx"></view>
<view class="common" style="border-width: 10rpx
; border-style: solid;
"></view>
</view>
<view>
<text>border-left-width: 10rpx</text>
<view class="common" style="border-left-width: 10rpx"></view>
<view class="common" style="border-left-width: 10rpx
; border-left-style: solid;
"></view>
</view>
<view>
<text>border-top-width: 20rpx</text>
<view class="common" style="border-top-width: 20rpx"></view>
<view class="common" style="border-top-width: 20rpx
; border-top-style: solid;
"></view>
</view>
<view>
<text>border-right-width: 30rpx</text>
<view class="common" style="border-right-width: 30rpx"></view>
<view class="common" style="border-right-width: 30rpx
; border-right-style: solid;
"></view>
</view>
<view>
<text>border-bottom-width: 40rpx</text>
<view class="common" style="border-bottom-width: 40rpx"></view>
<view class="common" style="border-bottom-width: 40rpx
; border-bottom-style: solid;
"></view>
</view>
</view>
<!-- #ifdef APP -->
...
...
pages/CSS/border/complex-border/complex-border.uvue
浏览文件 @
e09f9164
...
...
@@ -33,7 +33,8 @@
width: 250rpx;
height: 250rpx;
background-color: #00dd00;
border-width: 20rpx;
border-width: 20rpx;
border-style: solid;
border-color: #000000;
border-bottom-width: 40rpx;
border-bottom-color: #ff0000;
...
...
@@ -45,7 +46,8 @@
.border-rect {
width: 250rpx;
height: 250rpx;
height: 250rpx;
border-style: solid;
background-color: #00dd00;
border-width: 20rpx;
border-color: #000000;
...
...
@@ -53,4 +55,4 @@
border-bottom-color: #ff0000;
border-right-color: #FFDC02;
}
</style>
\ No newline at end of file
</style>
pages/component/scroll-view/scroll-view-props.uvue
浏览文件 @
e09f9164
...
...
@@ -57,13 +57,13 @@
<view class="uni-option">
<text>设置触发scrolltoupper的距离</text>
<input style="width: 100rpx;border-width: 2rpx;text-align: center; " :value="upperThreshold"
<input style="width: 100rpx;border-width: 2rpx;text-align: center;
border-style: solid;
" :value="upperThreshold"
type="number" @input="handleUpperThresholdInput" />
</view>
<view class="uni-option">
<text>设置触发scrolltolower的距离</text>
<input style="width: 100rpx;border-width: 2rpx;text-align: center; " :value="lowerThreshold"
<input style="width: 100rpx;border-width: 2rpx;text-align: center;
border-style: solid;
" :value="lowerThreshold"
type="number" @input="handleLowerThresholdInput" />
</view>
...
...
@@ -203,7 +203,8 @@
height: 400rpx;
width: 100%;
background-color: azure;
border-width: 2rpx;
border-width: 2rpx;
border-style: solid;
border-color: chocolate;
}
...
...
pages/component/scroll-view/scroll-view-refresher-props.uvue
浏览文件 @
e09f9164
...
...
@@ -31,13 +31,13 @@
<view class="uni-option">
<text>设置下拉刷新阈值</text>
<input style="width: 100rpx;border-width: 2rpx;text-align: center; " :disabled="!refresherEnabled"
<input style="width: 100rpx;border-width: 2rpx;text-align: center;
border-style: solid;
" :disabled="!refresherEnabled"
:value="refresherThreshold" type="number" @input="handleRefresherThresholdInput" />
</view>
<view class="uni-option">
<text>设置下拉刷新区域背景颜色</text>
<input style="width: 200rpx;border-width: 2rpx;text-align: center; " :disabled="!refresherEnabled"
<input style="width: 200rpx;border-width: 2rpx;text-align: center;
border-style: solid;
" :disabled="!refresherEnabled"
:value="refresherBackground" @input="handleRefresherBackground" />
</view>
...
...
@@ -142,6 +142,7 @@
width: 100%;
background-color: azure;
border-width: 2rpx;
border-style: solid;
border-color: chocolate;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录