Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Five-菜鸟级
NodeJS_671036
提交
21747b45
N
NodeJS_671036
项目概览
Five-菜鸟级
/
NodeJS_671036
与 Fork 源项目一致
Fork自
inscode / NodeJS
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
N
NodeJS_671036
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
21747b45
编写于
3月 25, 2025
作者:
Q
qq_41923622
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Tue Mar 25 14:25:00 CST 2025 inscode
上级
6e2a17ed
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
19 addition
and
12 deletion
+19
-12
index.html
index.html
+10
-3
src/float/bottomPopup.ts
src/float/bottomPopup.ts
+1
-0
src/style.scss
src/style.scss
+8
-9
未找到文件。
index.html
浏览文件 @
21747b45
...
@@ -32,11 +32,11 @@
...
@@ -32,11 +32,11 @@
<canvas
id=
"svga-container"
style=
"width:100%; height: auto;"
></canvas>
<canvas
id=
"svga-container"
style=
"width:100%; height: auto;"
></canvas>
</div>
</div>
<div
id=
"gift-card-animation-box"
>
<div
id=
"gift-card-animation-box"
>
<div
class=
"shuamozhihua"
>
<div
class=
"shuamozhihua"
>
<div
class=
"shuamozhihua-title"
>
棘祥杏福 情定终身
</div>
<div
class=
"shuamozhihua-title"
>
棘祥杏福 情定终身
</div>
<img
class=
"shuamozhihua-img1"
src=
"https://vercel-proxy.fivecc.cn/static-img/1775464/202503/1775464-20250322205303857-804953175.png"
/>
<img
class=
"shuamozhihua-img1"
src=
"https://vercel-proxy.fivecc.cn/static-img/1775464/202503/1775464-20250322205303857-804953175.png"
/>
<img
class=
"shuamozhihua-img2"
src=
"https://vercel-proxy.fivecc.cn/static-img/1775464/202503/1775464-20250322205245772-817504696.png"
/>
<img
class=
"shuamozhihua-img2"
src=
"https://vercel-proxy.fivecc.cn/static-img/1775464/202503/1775464-20250322205245772-817504696.png"
/>
</div>
</div>
</div>
</div>
<div
id=
"app"
>
<div
id=
"app"
>
...
@@ -208,7 +208,14 @@
...
@@ -208,7 +208,14 @@
<div
v-for=
"(item, index) in giftList"
:key=
"index"
<div
v-for=
"(item, index) in giftList"
:key=
"index"
:class=
"((item?'gift-list-item ': ' ')+(item.class?item.class:''))"
>
:class=
"((item?'gift-list-item ': ' ')+(item.class?item.class:''))"
>
<div
class=
"gift-list-avatar"
><img
:src=
"item.avatar"
/></div>
<div
class=
"gift-list-avatar"
><img
:src=
"item.avatar"
/></div>
<div
class=
"gift-list-content"
>
{{item.text}}
</div>
<div
class=
"gift-list-content"
>
<div
class=
"gift-list-avatar-name"
>
<span>
{{item.avatarName}}
</span>
祝:
</div>
<span>
{{item.text}}
</span>
</div>
<div
class=
"gift-list-gift-img"
>
<div
class=
"gift-list-gift-img"
>
<img
class=
"gift-img1"
:src=
"item.giftImg"
/>
<img
class=
"gift-img1"
:src=
"item.giftImg"
/>
<img
class=
"gift-img2"
:src=
"item.giftImg2"
/>
<img
class=
"gift-img2"
:src=
"item.giftImg2"
/>
...
...
src/float/bottomPopup.ts
浏览文件 @
21747b45
...
@@ -212,6 +212,7 @@ export function GiftsListPopup(props:any) {
...
@@ -212,6 +212,7 @@ export function GiftsListPopup(props:any) {
$template
:
'
#gifts-list-popup-template
'
,
$template
:
'
#gifts-list-popup-template
'
,
giftList
:[{
giftList
:[{
class
:
'
shamozihua
'
,
class
:
'
shamozihua
'
,
avatarName
:
"
沙漠之花
"
,
avatar
:
'
https://vercel-proxy.fivecc.cn/static-img/1775464/202503/1775464-20250322202646157-442978556.png
'
,
avatar
:
'
https://vercel-proxy.fivecc.cn/static-img/1775464/202503/1775464-20250322202646157-442978556.png
'
,
avatarClass
:
''
,
avatarClass
:
''
,
text
:
"
棘祥杏福 情定终身
"
,
text
:
"
棘祥杏福 情定终身
"
,
...
...
src/style.scss
浏览文件 @
21747b45
...
@@ -227,7 +227,7 @@ button:focus-visible {
...
@@ -227,7 +227,7 @@ button:focus-visible {
min-height
:
20px
;
min-height
:
20px
;
text-align
:
left
;
text-align
:
left
;
margin-top
:
2px
;
margin-top
:
2px
;
font-size
:
18px
;
padding
:
4px
8px
;
padding
:
4px
8px
;
opacity
:
1
;
opacity
:
1
;
color
:
#fafafa
;
color
:
#fafafa
;
...
@@ -257,6 +257,12 @@ button:focus-visible {
...
@@ -257,6 +257,12 @@ button:focus-visible {
}
}
.gift-list-content
{
.gift-list-content
{
.gift-list-avatar-name
{
color
:
#fafafa
;
font-family
:
'Pacifico'
,
'cursive'
;
font-size
:
14px
;
}
font-size
:
18px
;
font-family
:
'Muyao'
,
'Pacifico'
,
'cursive'
;
font-family
:
'Muyao'
,
'Pacifico'
,
'cursive'
;
text-shadow
:
0
0
10px
rgba
(
243
,
221
,
27
,
0
.836
);
text-shadow
:
0
0
10px
rgba
(
243
,
221
,
27
,
0
.836
);
white-space
:
nowrap
;
white-space
:
nowrap
;
...
@@ -345,16 +351,9 @@ button:focus-visible {
...
@@ -345,16 +351,9 @@ button:focus-visible {
top
:
14vh
;
top
:
14vh
;
font-family
:
'Sanjixinkai'
,
'Pacifico'
,
'cursive'
;
font-family
:
'Sanjixinkai'
,
'Pacifico'
,
'cursive'
;
font-size
:
32px
;
font-size
:
32px
;
background-color
:
rgba
(
255
,
182
,
193
,
0
.6
);
backdrop-filter
:
blur
(
6px
);
backdrop-filter
:
blur
(
6px
);
border
:
3px
solid
transparent
;
border
:
3px
solid
transparent
;
background-image
:
linear-gradient
(
to
right
bottom
,
rgba
(
255
,
255
,
255
,
0
.4
)
,
rgba
(
255
,
255
,
255
,
0
.1
))
,
linear-gradient
(
to
right
bottom
,
rgba
(
236
,
236
,
236
,
0
.5
)
0%
,
rgba
(
255
,
255
,
255
,
0
)
40%
,
rgba
(
255
,
72
,
219
,
0
)
55%
,
rgba
(
235
,
27
,
27
,
0
.2
)
100%
);
padding
:
10px
20px
;
padding
:
10px
20px
;
border-radius
:
50px
;
border-radius
:
50px
;
color
:
#e74210
;
color
:
#e74210
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录