新增海报生成页、H5端流程大致走通,差抽奖验证的逻辑,以及海报元素的对应关系

This commit is contained in:
Andy Leong
2024-01-19 20:22:31 +08:00
parent cac9a17d36
commit fc0d5fce8c
37 changed files with 654 additions and 101 deletions

View File

@@ -1,9 +1,67 @@
@charset "utf-8";
// @import url('@/assets/font/AlimamaShuHeiTi.ttf');
/*--------------------
默认设置
-------------------*/
* {
padding: 0;
margin: 0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
// -webkit-user-select: none;
// -moz-user-select: none;
/*touch-action: none; */
// -webkit-transform: translate3d(0, 0, 0);
// -moz-transform: translate3d(0, 0, 0);
// -ms-transform: translate3d(0, 0, 0);
// transform: translate3d(0, 0, 0);
}
*:not(input, textarea) {
-webkit-user-select: none;
-moz-user-select: none;
//-webkit-touch-callout:none;
//user-select: none;
//-webkit-user-select: none;
}
html {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-tap-highlight: rgba(0, 0, 0, 0);
-webkit-text-size-adjust: none;
overflow: -moz-scrollbars-vertical;
width: 100%;
height: 100%;
font-size: 100px;
}
body {
position: relative;
width: 100%;
height: 100%;
margin: 0 auto;
font: normal 12px / auto "Helvetica Neue", Helvetica, "Micorsoft YaHei", Arial,
sans-serif;
/* -webkit-user-select: none;*/
}
@font-face {
font-family: 'alimama';
src: url(@/assets/font/AlimamaShuHeiTi.ttf) format('truetype');
font-family: "alimama";
src: url(@/assets/font/AlimamaShuHeiTi.ttf) format("truetype");
}
@font-face {
font-family: "HYYakuHei";
src: url(@/assets/font/HYYakuHei-85W.ttf) format("truetype");
}
@font-face {
font-family: "fzcy";
src: url(@/assets/font/fzcy.ttf) format("truetype");
}
@font-face {
font-family: "fzzy";
src: url(@/assets/font/fzzy.ttf) format("truetype");
}
* {
@@ -57,4 +115,4 @@
flex-direction: column;
align-items: center;
justify-content: center;
}
}