Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Five-菜鸟级
NodeJS_671036
提交
3a4f47ce
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看板
提交
3a4f47ce
编写于
3月 22, 2025
作者:
Q
qq_41923622
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Sat Mar 22 21:16:00 CST 2025 inscode
上级
f498aba5
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
102 addition
and
9 deletion
+102
-9
index.html
index.html
+16
-2
src/float/bottomPopup.scss
src/float/bottomPopup.scss
+65
-3
src/float/bottomPopup.ts
src/float/bottomPopup.ts
+21
-4
未找到文件。
index.html
浏览文件 @
3a4f47ce
...
...
@@ -43,7 +43,7 @@
</div>
<section
v-scope=
"SectionBaseTemplate({})"
@
vue:mounted=
"mounted"
class=
"section-row"
>
<div
class=
"section-wrapper"
>
dddd
💓 💖
</div>
</section>
<section
class=
"section-row"
>
...
...
@@ -108,6 +108,7 @@
</section>
<div
v-scope=
"FormPopup({})"
@
vue:mounted=
"mounted"
></div>
<div
v-scope=
"BottomPopup({ initialCount: 1 })"
@
vue:mounted=
"mounted"
></div>
<div
v-scope=
"GiftsListPopup({})"
@
vue:mounted=
"mounted"
></div>
</div>
<template
id=
"form-popupter-template"
>
<div
class=
"signupForm"
v-if=
"showForm"
>
...
...
@@ -193,7 +194,20 @@
</div>
</section>
</template>
<template
id=
"gifts-list-popup-template"
>
<div
class=
"bounbottom-popupter-gift-list"
>
<div
class=
"gift-list-container"
>
<div
v-for=
"(item, index) in giftList"
:key=
"index"
:class=
"(item?'gift-list-item ': ' ')"
>
<div
class=
"gift-list-avatar"
><img
:src=
"item.avatar"
/></div>
<div
class=
"gift-list-content"
>
{{item.text}}
</div>
<div
class=
"gift-list-gift-img"
>
<img
:src=
"item.giftImg"
/>
<img
:src=
"item.giftImg2"
/>
</div>
</div>
</div>
</div>
</template>
<script
type=
"module"
src=
"/src/main.ts"
></script>
...
...
src/float/bottomPopup.scss
浏览文件 @
3a4f47ce
...
...
@@ -209,7 +209,7 @@
opacity
:
1
;
color
:
#fafafa
;
border-radius
:
20px
;
background
:
rgba
(
235
,
116
,
116
,
0
.5
);
background
:
rgba
(
235
,
90
,
118
,
0
.4
);
transition
:
opacity
2s
ease-in-out
,
transform
1s
ease-in-out
;
div
{
...
...
@@ -283,6 +283,68 @@
}
}
}
}
.bounbottom-popupter-gift-list
{
position
:
fixed
;
pointer-events
:
none
;
bottom
:
10vh
;
z-index
:
500
;
height
:
32vh
;
width
:
100vw
;
overflow
:
hidden
;
.gift-list-container
{
position
:
relative
;
.gift-list-item
{
box-sizing
:
border-box
;
position
:
absolute
;
width
:
auto
;
max-width
:
70vw
;
min-height
:
20px
;
text-align
:
left
;
margin-top
:
2px
;
font-size
:
14px
;
padding
:
4px
8px
;
opacity
:
1
;
color
:
#fafafa
;
border-radius
:
30px
;
background
:
rgba
(
235
,
90
,
118
,
0
.5
);
display
:
flex
;
flex-wrap
:
nowrap
;
align-items
:
center
;
padding-right
:
40px
;
.gift-list-avatar
{
border-radius
:
50%
;
border
:
3px
solid
#ffb3b3
;
overflow
:
hidden
;
width
:
36px
;
height
:
36px
;
box-shadow
:
0
0
10px
rgba
(
255
,
182
,
193
,
0
.6
);
transform
:
translateZ
(
20px
);
img
{
width
:
36px
;
height
:
auto
;
}
margin-right
:
5px
;
}
.gift-list-content
{
white-space
:
nowrap
;
}
.gift-list-gift-img
{
position
:
absolute
;
right
:
15px
;
img
{
width
:
auto
;
height
:
50px
;
}
}
}
}
}
@keyframes
tanlianxia
{
...
...
@@ -343,7 +405,7 @@
border-radius
:
40px
;
background-image
:
url('https://vercel-proxy.fivecc.cn/static-img/1775464/202503/1775464-20250322183844363-2055895336.png')
;
background-repeat
:
no-repeat
;
background-size
:
100%
,
100%
;
background-size
:
100%
,
100%
;
background-position-y
:
30px
;
}
...
...
src/float/bottomPopup.ts
浏览文件 @
3a4f47ce
...
...
@@ -207,6 +207,23 @@ export function BottomPopup(props: any) {
}
}
export
function
GiftsListPopup
(
props
:
any
)
{
return
{
$template
:
'
#gifts-list-popup-template
'
,
giftList
:[{
avatar
:
'
https://vercel-proxy.fivecc.cn/static-img/1775464/202503/1775464-20250322202646157-442978556.png
'
,
avatarClass
:
''
,
text
:
"
棘祥杏福 情定终身
"
,
giftImg
:
"
https://vercel-proxy.fivecc.cn/static-img/1775464/202503/1775464-20250322205303857-804953175.png
"
,
giftImg2
:
"
https://vercel-proxy.fivecc.cn/static-img/1775464/202503/1775464-20250322205245772-817504696.png
"
}],
isShow
:
false
,
mounted
(){
console
.
log
(
this
.
giftList
)
}
}
}
export
function
MusicPlay
(
props
:
any
)
{
return
{
isPlay
:
true
,
...
...
@@ -228,4 +245,4 @@ export function MusicPlay(props: any) {
}
}
}
export
default
{
floatStore
,
BottomPopup
,
FormPopup
,
MusicPlay
}
\ No newline at end of file
export
default
{
floatStore
,
BottomPopup
,
FormPopup
,
GiftsListPopup
,
MusicPlay
}
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录