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>
|
</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
|
||||||
|
@ -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
|
||||||
|
@ -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">
|
||||||
|
@ -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>
|
||||||
`;
|
`;
|
||||||
|
@ -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>
|
||||||
`;
|
`;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user