This commit is contained in:
梁泽军 2025-04-21 15:23:58 +08:00
parent d471776f28
commit 14806576d4
9 changed files with 19 additions and 4 deletions

BIN
src.7z

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 425 KiB

After

Width:  |  Height:  |  Size: 376 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 445 KiB

After

Width:  |  Height:  |  Size: 393 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 449 KiB

After

Width:  |  Height:  |  Size: 397 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 425 KiB

After

Width:  |  Height:  |  Size: 377 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 448 KiB

After

Width:  |  Height:  |  Size: 397 KiB

View File

@ -203,6 +203,7 @@ const getClass = (item) => {
font-size: 34px;
color: #9e4b00;
line-height: 50px;
text-align: justify;
}
}

View File

@ -135,6 +135,19 @@ const hidePop = (event) => {
});
};
const hide =(event)=>{
let e = event.target;
debounceTap(e, () => {
gsap.to(".posterPop", {
duration: 0.5, autoAlpha: 0,
onComplete: () => {
emit('ResultPage', { action: 'showQuestion' })
}
});
});
}
//
const goShare = (event) => {
let e = event.target;
@ -232,7 +245,7 @@ const posterCreate = (option, imageArr) => {
<div class="poster" :class="'poster-' + posterId">
<img id="posterSrc" src="" alt="" srcset="">
</div>
<!-- <div class="poster-cls-btn"></div> -->
<div class="poster-cls-btn" @click="hide($event)"></div>
</div>
<div class="save-tips">*长按保存海报</div>
<div class="btn-box">

View File

@ -112,11 +112,12 @@ const drawFn = (item) => {
const showResult = ref(false);
const resultFn = (item) => {
if (item.action == "hide") {
showResult.value = false;
console.log('hide', showResult.value);
}
if(item.action == "showQuestion"){
showQuestionList.value = true;
showResult.value = false;
}
if (item.action == "showDraw") {
showDraw.value = true;