Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e2c264f82c |
@ -100,7 +100,7 @@ const hide = (event) => {
|
|||||||
duration: 0.3,
|
duration: 0.3,
|
||||||
autoAlpha: 0,
|
autoAlpha: 0,
|
||||||
onComplete: () => {
|
onComplete: () => {
|
||||||
emit("DrawPage", "hide");
|
emit("DrawPage", {action: "hide"});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -116,7 +116,7 @@ const copyFn = (event) => {
|
|||||||
|
|
||||||
|
|
||||||
const entryAni = () => {
|
const entryAni = () => {
|
||||||
gsap.from(".DrawPage", { duration: 0.2, autoAlpha: 0 });
|
gsap.to(".DrawPage", { duration: 0.2, autoAlpha: 1 });
|
||||||
gsap.from(".draw-container", { duration: 0.5, autoAlpha: 0, scale: 0.7 });
|
gsap.from(".draw-container", { duration: 0.5, autoAlpha: 0, scale: 0.7 });
|
||||||
gsap.from(".draw-light", {
|
gsap.from(".draw-light", {
|
||||||
duration: 3,
|
duration: 3,
|
||||||
@ -170,6 +170,7 @@ onMounted(() => {
|
|||||||
@include fixed();
|
@include fixed();
|
||||||
@include flexCen();
|
@include flexCen();
|
||||||
background-color: rgba($color: #000000, $alpha: 0.8);
|
background-color: rgba($color: #000000, $alpha: 0.8);
|
||||||
|
visibility: hidden;
|
||||||
|
|
||||||
// 抽奖弹窗样式
|
// 抽奖弹窗样式
|
||||||
.draw-container {
|
.draw-container {
|
||||||
|
|||||||
@ -354,7 +354,7 @@ const hideShare = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.mbti-blessings-box {
|
.mbti-blessings-box {
|
||||||
@include pos(500px, 160px, 130px, 715px);
|
@include pos(600px, 160px, 130px, 710px);
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-around;
|
justify-content: space-around;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user