docs(Overlay): add set z-index demo (#12454)

This commit is contained in:
neverland 2023-11-18 21:28:32 +08:00 committed by GitHub
parent 632ff0be31
commit 001e7b0b46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 63 additions and 0 deletions

View File

@ -61,6 +61,14 @@ export default {
</style> </style>
``` ```
### Setting z-index
The default z-index level of the Overlay component is `1`. You can set its z-index level using the `z-index` prop.
```html
<van-overlay z-index="100" />
```
## API ## API
### Props ### Props

View File

@ -63,6 +63,14 @@ export default {
</style> </style>
``` ```
### 设置 z-index
Overlay 组件默认的 z-index 层级为 `1`,你可以通过 `z-index` 属性设置它的 z-index 层级。
```html
<van-overlay z-index="100" />
```
## API ## API
### Props ### Props

View File

@ -6,10 +6,12 @@ import { useTranslate } from '../../../docs/site';
const t = useTranslate({ const t = useTranslate({
'zh-CN': { 'zh-CN': {
setZIndex: '设置 z-index',
showOverlay: '显示遮罩层', showOverlay: '显示遮罩层',
embeddedContent: '嵌入内容', embeddedContent: '嵌入内容',
}, },
'en-US': { 'en-US': {
setZIndex: 'Set z-index',
showOverlay: 'Show Overlay', showOverlay: 'Show Overlay',
embeddedContent: 'Embedded Content', embeddedContent: 'Embedded Content',
}, },
@ -17,6 +19,7 @@ const t = useTranslate({
const show = ref(false); const show = ref(false);
const showEmbedded = ref(false); const showEmbedded = ref(false);
const showZIndex = ref(false);
</script> </script>
<template> <template>
@ -43,6 +46,16 @@ const showEmbedded = ref(false);
</div> </div>
</van-overlay> </van-overlay>
</demo-block> </demo-block>
<demo-block :title="t('setZIndex')">
<van-button
type="primary"
:text="t('setZIndex')"
style="margin-left: 16px"
@click="showZIndex = true"
/>
<van-overlay :show="showZIndex" @click="showZIndex = false" z-index="100" />
</demo-block>
</template> </template>
<style lang="less"> <style lang="less">

View File

@ -30,4 +30,18 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
</button> </button>
</div> </div>
<div>
<!--[-->
<button
type="button"
class="van-button van-button--primary van-button--normal"
style="margin-left:16px;"
>
<div class="van-button__content">
<span class="van-button__text">
Set z-index
</span>
</div>
</button>
</div>
`; `;

View File

@ -41,4 +41,24 @@ exports[`should render demo and match snapshot 1`] = `
> >
</transition-stub> </transition-stub>
</div> </div>
<div>
<button
type="button"
class="van-button van-button--primary van-button--normal"
style="margin-left: 16px;"
>
<div class="van-button__content">
<span class="van-button__text">
Set z-index
</span>
</div>
</button>
<transition-stub
name="van-fade"
appear="true"
persisted="false"
css="true"
>
</transition-stub>
</div>
`; `;