Commit 10caef28 by doszhang

dos

parent 6207a87b
......@@ -335,7 +335,7 @@ $(document).ready(function () {
function createPoster() {
// 创建海报页面的flag列表
for (let i = 0; i < 1; i++) {
for (let i = 0; i < flagStack.length; i++) {
createList('.poster-page .poster-list', flagStack[i], i + 1);
}
......@@ -343,10 +343,10 @@ function createPoster() {
let topHalfHeight = pxToRem(389);
let bottomHalfHeight = pxToRem(368);
let posterCanvasHeight = 0;
flagListHeight = flagListHeight * 2;
// flagListHeight = flagListHeight * 2;
if (flagListHeight < pxToRem(383)) {
posterCanvasHeight = topHalfHeight + pxToRem(383) + bottomHalfHeight;
posterCanvasHeight = topHalfHeight;
flagListHeight = pxToRem(383);
} else {
posterCanvasHeight = topHalfHeight + flagListHeight + bottomHalfHeight;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment