mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(Overlay): add set z-index demo (#12454)
This commit is contained in:
parent
632ff0be31
commit
001e7b0b46
@ -61,6 +61,14 @@ export default {
|
||||
</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
|
||||
|
||||
### Props
|
||||
|
@ -63,6 +63,14 @@ export default {
|
||||
</style>
|
||||
```
|
||||
|
||||
### 设置 z-index
|
||||
|
||||
Overlay 组件默认的 z-index 层级为 `1`,你可以通过 `z-index` 属性设置它的 z-index 层级。
|
||||
|
||||
```html
|
||||
<van-overlay z-index="100" />
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### Props
|
||||
|
@ -6,10 +6,12 @@ import { useTranslate } from '../../../docs/site';
|
||||
|
||||
const t = useTranslate({
|
||||
'zh-CN': {
|
||||
setZIndex: '设置 z-index',
|
||||
showOverlay: '显示遮罩层',
|
||||
embeddedContent: '嵌入内容',
|
||||
},
|
||||
'en-US': {
|
||||
setZIndex: 'Set z-index',
|
||||
showOverlay: 'Show Overlay',
|
||||
embeddedContent: 'Embedded Content',
|
||||
},
|
||||
@ -17,6 +19,7 @@ const t = useTranslate({
|
||||
|
||||
const show = ref(false);
|
||||
const showEmbedded = ref(false);
|
||||
const showZIndex = ref(false);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@ -43,6 +46,16 @@ const showEmbedded = ref(false);
|
||||
</div>
|
||||
</van-overlay>
|
||||
</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>
|
||||
|
||||
<style lang="less">
|
||||
|
@ -30,4 +30,18 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
</div>
|
||||
</button>
|
||||
</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>
|
||||
`;
|
||||
|
@ -41,4 +41,24 @@ exports[`should render demo and match snapshot 1`] = `
|
||||
>
|
||||
</transition-stub>
|
||||
</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>
|
||||
`;
|
||||
|
Loading…
x
Reference in New Issue
Block a user