Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-im
提交
a5a63e37
U
uni-im
项目概览
DCloud
/
uni-im
通知
3
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-im
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
a5a63e37
编写于
6月 18, 2024
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
优化 代码体积
上级
418722b8
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
34 addition
and
18 deletion
+34
-18
components/uni-im-load-state/uni-im-load-state.vue
components/uni-im-load-state/uni-im-load-state.vue
+23
-7
sdk/utils/highlight/github-dark.min.css
sdk/utils/highlight/github-dark.min.css
+0
-10
sdk/utils/highlight/github-dark.min.scss
sdk/utils/highlight/github-dark.min.scss
+11
-1
static/run.gif
static/run.gif
+0
-0
未找到文件。
components/uni-im-load-state/uni-im-load-state.vue
浏览文件 @
a5a63e37
<
template
>
<view
class=
"refresh-box"
>
<
image
v-if=
"status == 'loading'"
class=
"refresh-icon"
src=
"/uni_modules/uni-im/static/run.gif"
mode=
"widthFix"
></image
>
<view
class=
"refresh-box"
>
<
uni-icons
v-if=
"status == 'loading'"
color=
"#bbb"
:size=
"24"
class=
"refresh-icon"
type=
"spinner-cycle"
></uni-icons
>
<text
class=
"refresh-text"
>
{{
status
==
'
loading
'
?
contentText
.
contentrefresh
:
contentText
.
contentnomore
}}
</text>
</view>
</
template
>
...
...
@@ -31,11 +31,27 @@
justify-content
:
center
;
align-items
:
center
;
flex-direction
:
row
;
width
:
100%
;
}
.refresh-icon
{
width
:
25px
;
height
:
25px
;
width
:
750rpx
;
}
/* #ifdef H5 */
@media
screen
and
(
min-device-width
:
960px
){
.refresh-box
{
width
:
100%
;
}
}
/* #endif */
// 给refresh-icon增加旋转的动画
@keyframes
rotate
{
0
%
{
transform
:
rotate
(
0deg
);
}
100
%
{
transform
:
rotate
(
360deg
);
}
}
.refresh-icon
{
animation
:
rotate
1
.3s
linear
infinite
;
margin
:
5px
;
}
...
...
sdk/utils/highlight/github-dark.min.css
已删除
100644 → 0
浏览文件 @
418722b8
pre
code
.hljs
{
display
:
block
;
overflow-x
:
auto
;
padding
:
1em
}
code
.hljs
{
padding
:
3px
5px
}
/*!
Theme: GitHub Dark
Description: Dark theme as seen on github.com
Author: github.com
Maintainer: @Hirse
Updated: 2021-05-15
Outdated base version: https://github.com/primer/github-syntax-dark
Current colors taken from GitHub's CSS
*/
.hljs
{
color
:
#c9d1d9
;
background
:
#0d1117
}
.hljs-doctag
,
.hljs-keyword
,
.hljs-meta
.hljs-keyword
,
.hljs-template-tag
,
.hljs-template-variable
,
.hljs-type
,
.hljs-variable.language_
{
color
:
#ff7b72
}
.hljs-title
,
.hljs-title.class_
,
.hljs-title.class_.inherited__
,
.hljs-title.function_
{
color
:
#d2a8ff
}
.hljs-attr
,
.hljs-attribute
,
.hljs-literal
,
.hljs-meta
,
.hljs-number
,
.hljs-operator
,
.hljs-selector-attr
,
.hljs-selector-class
,
.hljs-selector-id
,
.hljs-variable
{
color
:
#79c0ff
}
.hljs-meta
.hljs-string
,
.hljs-regexp
,
.hljs-string
{
color
:
#a5d6ff
}
.hljs-built_in
,
.hljs-symbol
{
color
:
#ffa657
}
.hljs-code
,
.hljs-comment
,
.hljs-formula
{
color
:
#8b949e
}
.hljs-name
,
.hljs-quote
,
.hljs-selector-pseudo
,
.hljs-selector-tag
{
color
:
#7ee787
}
.hljs-subst
{
color
:
#c9d1d9
}
.hljs-section
{
color
:
#1f6feb
;
font-weight
:
700
}
.hljs-bullet
{
color
:
#f2cc60
}
.hljs-emphasis
{
color
:
#c9d1d9
;
font-style
:
italic
}
.hljs-strong
{
color
:
#c9d1d9
;
font-weight
:
700
}
.hljs-addition
{
color
:
#aff5b4
;
background-color
:
#033a16
}
.hljs-deletion
{
color
:
#ffdcd7
;
background-color
:
#67060c
}
\ No newline at end of file
sdk/utils/highlight/github-dark.min.scss
浏览文件 @
a5a63e37
.
code-view-box
:
:
v-deep
{
pre
code
.hljs
{
display
:block
;
overflow-x
:auto
;
padding
:
1em
}
code
.hljs
{
padding
:
3px
5px
}
/*!
/* #ifndef MP */
pre
code
/*
#endif
*/
.hljs
{
display
:block
;
overflow-x
:auto
;
padding
:
1em
}
/* #ifndef MP */
code
/*
#endif
*/
.hljs
{
padding
:
3px
5px
}
/*!
Theme: GitHub Dark
Description: Dark theme as seen on github.com
Author: github.com
...
...
static/run.gif
已删除
100644 → 0
浏览文件 @
418722b8
118.3 KB
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录