zhangxiaoxu123456
2021-12-20 301289e539c417995f95f5cb91fd1f6043bb7cfd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<template>
    <view class="u-demo">
        <view class="u-demo-wrap">
            <view class="u-demo-title">演示效果</view>
            <view class="u-demo-area">
                <u-toast ref="uToast"></u-toast>
                <view class="u-no-demo-here">
                    请点击弹出遮罩查看效果
                </view>
                <u-mask :show="show" @click="show = false" :zoom="zoom" :duration="duration">
                    <view class="warp" v-if="content">
                        <view class="rect" @tap.stop></view>
                    </view>
                </u-mask>
            </view>
        </view>
        <view class="u-config-wrap">
            <view class="u-config-title u-border-bottom">
                参数配置
            </view>
            <view class="u-config-item">
                <view class="u-item-title">状态</view>
                <u-subsection :current="current" :list="['显示', '隐藏']" @change="showChange"></u-subsection>
            </view>
            <view class="u-config-item">
                <view class="u-item-title">缩放效果</view>
                <u-subsection :list="['是', '否']" @change="zoomChange"></u-subsection>
            </view>
            <view class="u-config-item">
                <view class="u-item-title">内容填充</view>
                <u-subsection current="1" :list="['是', '否']" @change="contentChange"></u-subsection>
            </view>
            <view class="u-config-item">
                <view class="u-item-title">动画时长(ms)</view>
                <u-subsection current="1" :list="['100', '300', '800']" @change="durationChange"></u-subsection>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                show: false,
                zoom: true,
                duration: 300,
                content: false,
            }
        },
        computed: {
            current() {
                return this.show ? 0 : 1;
            }
        },
        methods: {
            showChange(index) {
                this.show = index == 0 ? true : false;
            },
            zoomChange(index) {
                this.zoom = index == 0 ? true : false;
                this.show = true;
            },
            durationChange(index) {
                this.duration = index == 0 ? 100 : index == 1 ? 300 : 800;
                this.show = true;
            },
            contentChange(index) {
                this.content = index == 0 ? true : false;
                this.show = true;
            }
        }
    }
</script>
 
<style scoped lang="scss">
    .warp {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
 
    .rect {
        width: 120px;
        height: 120px;
        background-color: #fff;
    }
</style>