提交 34a670da 编写于 作者: 雪洛's avatar 雪洛

fix(mp): 修复小程序端z-index示例显示错位的Bug

上级 2d3a1c61
...@@ -75,27 +75,32 @@ ...@@ -75,27 +75,32 @@
.default { .default {
background-color: red; background-color: red;
z-index: 10; z-index: 10;
/* #ifndef MP */
top: var(--window-top); top: var(--window-top);
/* #endif */
/* #ifdef MP */
top: 0px;
/* #endif */
} }
.specified { .specified {
background-color: green; background-color: green;
z-index: 5; z-index: 5;
left: 87px; left: 87px;
/* #ifdef APP */ /* #ifdef APP || MP */
top: 87px; top: 87px;
/* #endif */ /* #endif */
/* #ifdef H5 */ /* #ifdef WEB */
top: calc(var(--window-top) + 87px); top: calc(var(--window-top) + 87px);
/* #endif */ /* #endif */
} }
.floor { .floor {
background-color: chocolate; background-color: chocolate;
/* #ifdef APP */ /* #ifdef APP || MP */
top: 250px; top: 250px;
/* #endif */ /* #endif */
/* #ifdef H5 */ /* #ifdef WEB */
top: calc(var(--window-top) + 250px); top: calc(var(--window-top) + 250px);
/* #endif */ /* #endif */
left: 175px; left: 175px;
...@@ -103,10 +108,10 @@ ...@@ -103,10 +108,10 @@
} }
.popup { .popup {
/* #ifdef APP */ /* #ifdef APP || MP */
top: 320px; top: 320px;
/* #endif */ /* #endif */
/* #ifdef H5 */ /* #ifdef WEB */
top: calc(var(--window-top) + 320px); top: calc(var(--window-top) + 320px);
/* #endif */ /* #endif */
left: 87px; left: 87px;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册