Compare commits

...

1 Commits

Author SHA1 Message Date
rucky
9424a5beae 稍微做了个没办法的适配 2022-08-05 17:42:07 +08:00
2 changed files with 59 additions and 9 deletions

View File

@ -76,7 +76,7 @@
<!-- 添加专属服务人员企微弹窗 --> <!-- 添加专属服务人员企微弹窗 -->
<ServiceList v-if="showServicePop" @ServicePop="hideServicePop" /> <ServiceList v-if="showServicePop" @ServicePop="hideServicePop" />
<LuckyWheel v-if="false" /> <LuckyWheel v-if="true" />
</div> </div>
</template> </template>

View File

@ -1,6 +1,16 @@
<template> <template>
<div class="LuckyWheelCon" @touchmove.prevent> <div class="LuckyWheelCon" @touchmove.prevent>
<div class="LuckyWheel_container"> <div class="LuckyWheel_container">
<!-- <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 665.32 321.7">
<g id="图层_2" data-name="图层 2">
<path
id="path"
ref="path"
class="cls-1"
d="M129.65,82.55c69.31-110.8,389.54-108,471.58-3.88,170.2,201.08,294.62,282.86-236.59,282.86C-136,361.53-22.92,279.75,129.65,82.55Z"
/>
</g>
</svg> -->
<div class="LuckyWheel_box"> <div class="LuckyWheel_box">
<div class="prize p-1" ref="p1"></div> <div class="prize p-1" ref="p1"></div>
<div class="prize p-2" ref="p2"></div> <div class="prize p-2" ref="p2"></div>
@ -23,6 +33,10 @@
<div class="prize p-5" ref="p19"></div> <div class="prize p-5" ref="p19"></div>
<!-- <div class="prize p-3" ref="p20"></div> --> <!-- <div class="prize p-3" ref="p20"></div> -->
</div> </div>
<!-- 对照div 重点 -->
<div class="relative-box" ref="container"></div>
<div class="btn" @click="btn">开始抽奖</div> <div class="btn" @click="btn">开始抽奖</div>
</div> </div>
</div> </div>
@ -73,6 +87,7 @@ const p17 = ref(null);
const p18 = ref(null); const p18 = ref(null);
const p19 = ref(null); const p19 = ref(null);
const aniGroup = ref([]); const aniGroup = ref([]);
const container = ref();
const eqcode = ref(require("../assets/img/pop/eqcode.png")); const eqcode = ref(require("../assets/img/pop/eqcode.png"));
@ -80,7 +95,27 @@ const eqcode = ref(require("../assets/img/pop/eqcode.png"));
onBeforeMount(() => {}); onBeforeMount(() => {});
onMounted(() => { onMounted(() => {
// div便
const fontSize = getComputedStyle(window.document.documentElement)[
"font-size"
].replace("px", "");
const ratio = fontSize / 37.5;
// alert(fontSize);
console.log(ratio);
gsap.set(container.value, {
scale: ratio,
x:
200 * (ratio - 1) +
(ratio < 0.9 ? 10 * ratio : ratio > 1.2 ? 65 * ratio : 0),
y:
230 * (ratio - 1) +
(ratio < 0.9 ? 10 * ratio : ratio > 1.2 ? 35 * ratio : 0),
});
showDrawAni(); showDrawAni();
// let a = path.value.getBBox();
// console.log(a);
// console.log(window.innerWidth / 375);
}); });
// bingo index pArrindex // bingo index pArrindex
@ -126,12 +161,12 @@ const showDrawAni = (bingo, repeat) => {
ease: "back.out(1.4)", ease: "back.out(1.4)",
motionPath: { motionPath: {
path: "M115.37,73.45C177.05-25.14,462-22.69,535,70,686.45,248.93,797.17,321.7,324.48,321.7-121,321.7-20.39,248.93,115.37,73.45Z", path: "M115.37,73.45C177.05-25.14,462-22.69,535,70,686.45,248.93,797.17,321.7,324.48,321.7-121,321.7-20.39,248.93,115.37,73.45Z",
// align: [1, 1], align: ".relative-box", //div
autoRotate: true, autoRotate: true,
start: i * singleRate + rotateDelta - delta, // 0-1 start: i * singleRate + rotateDelta - delta, // 0-1
end: i * singleRate + 1 + rotateDelta - delta, // 0- end: i * singleRate + 1 + rotateDelta - delta, // 0-
offsetX: -177, offsetX: -22, //-177,
offsetY: -43, offsetY: 70,
alignOrigin: [0.5, 0], alignOrigin: [0.5, 0],
}, },
onUpdate: () => { onUpdate: () => {
@ -180,9 +215,9 @@ const btn = () => {
.LuckyWheel_container { .LuckyWheel_container {
position: absolute; position: absolute;
top: 770px; top: 700px;
left: 0; left: 0;
width: 760px; width: 750px;
height: 500px; height: 500px;
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -193,9 +228,12 @@ const btn = () => {
// // border-width: 123px; // // border-width: 123px;
// border-style: solid; // border-style: solid;
// border-radius: 50%; // border-radius: 50%;
// // box-shadow: -1.569px -17.932px 16px 0px rgba(234, 6, 16, 0.16); // // box-sh
// width: 831px; position: absolute;
// height: 305px; left: 0;
top: 0;
width: 750px;
height: 500px;
.li { .li {
width: 100px; width: 100px;
@ -204,7 +242,19 @@ const btn = () => {
} }
} }
.relative-box {
position: absolute;
left: 0;
top: 0;
width: 750px;
height: 500px;
}
.cls-1 {
fill: none;
}
.btn { .btn {
position: relative;
z-index: 111;
width: 200px; width: 200px;
height: 100px; height: 100px;
text-align: center; text-align: center;