为了账号安全,请及时绑定邮箱和手机立即绑定

移动端 3D 视图层 加部分交互

标签:
Html5 CSS3 Vue.js
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<template>
    <div class="wrap">
        <!--<div class="wrap1" :style="wrapStyle">-->
        <div class="show-wrap">
            <div class="tier-1">
 
            </div>
            <div class="tier-2">
                <div class="app-topbar">
                    <div class="title">title</div>
                </div>
                <!--<button @click="boxVisible=!boxVisible">submit</button>-->
            </div>
            <transition name="fade">
                <div class="tier-3" v-show="boxVisible">
                    masking...
                </div>
            </transition>
            <transition name="down">
                <div class="tier-4" v-if="boxVisible">
                    <div class="box">
                        <div class="title">title</div>
                        <div class="foot">
                            <button @click="boxVisible=false">yes</button>
                            <button @click="boxVisible=false">no</button>
                        </div>
                    </div>
                </div>
            </transition>
        </div>
        <!--</div>-->
        <!--<div class="control">-->
        <!--<input class="range" v-model="rangeV" type="range" value="0">-->
        <!--</div>-->
    </div>
</template>
 
<script>
   export default {
      name: "HelloWorld",
      data() {
         return {
            rangeV: 0,
            boxVisible: false
         }
      },
      watch: {
         rangeV: function (v) {
 
         }
      },
      computed: {
         wrapStyle() {
            return {
               transform: `rotateY(${this.rangeV}deg)`
            }
         }
      },
      methods: {
         showBox() {
 
         }
      },
      mounted() {
         setInterval(() => {
            this.boxVisible = !this.boxVisible;
         }, 3000)
      }
   }
</script>
 
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style>
    /*.down-enter-active, .down-leave-active {*/
    /*transition: all .5s;*/
    /*}*/
    /*.down-enter, .down-leave-to !* .down-leave-active below version 2.1.8 *! {*/
    /*opacity: 0.5;*/
    /*width: 0;*/
    /*}*/
    .down-enter, .down-leave-to {
        opacity: 0;
        transform: translateZ(150px) translateY(-100%) !important;;
    }
 
    .down-enter-active, .down-leave-active {
        transition: all 0.5s !important;
    }
 
    .down-enter-to, .down-leave {
        opacity: 1;
        transform: translateZ(150px) translateY(0px) !important;
    }
</style>
<style scoped>
    .wrap {
        width: 50%;
        height: 50%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        /*border: 1px solid #000;*/
        transform-style: preserve-3d;
        perspective: 2000px;
        /*transform: rotateX(1deg);*/
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
    }
 
    .wrap1 {
        perspective: 2000px;
        transform-style: preserve-3d;
    }
 
    .control {
        width: 100%;
        height: 100%;
        position: absolute;
    }
 
    .control .range {
        position: absolute;
        bottom: 0;
        z-index: 2;
    }
 
    .show-wrap {
        text-align: center;
        width: 375px;
        height: 660px;
        border: 1px solid #000;
        transform-style: preserve-3d;
        perspective: 20000px;
        transform: rotateX(26deg) rotateY(31deg) rotateZ(-20deg);
        /*transform: rotateX(40deg) rotateZ(20deg);*/
        /*animation: rotateZ 50s linear infinite;*/
        position: relative;
    }
 
    @keyframes rotateZ {
        0% {
            transform: rotateX(40deg) rotateZ(0deg)
        }
        50% {
            transform: rotateX(40deg) rotateZ(180deg)
        }
        100% {
            transform: rotateX(40deg) rotateZ(360deg)
        }
    }
 
    [class^="tier-"] {
        position: absolute;
        width: 100%;
        height: 100%;
        /*box-shadow: 0 0 5px #000;*/
    }
 
    .tier-1 {
        transform: translateZ(0px);
        background: #b1c4ee;
    }
 
    .tier-2 {
        transform: translateZ(50px);
        background: rgba(255, 255, 255, 0.65);
        box-shadow: 0 0 10px #000;
    }
 
    .tier-2 .app-topbar {
        background: #37a9ec;
        color: #fff;
        height: 40px;
        line-height: 40px;
    }
 
    .title {
        background: #37a9ec;
        color: #fff;
    }
 
    .tier-3 {
        transform: translateZ(100px);
        background: rgba(0, 0, 0, 0.49);
        display: flex;
        justify-content: center;
        align-items: baseline;
        color: #fff;
    }
 
    .tier-4 {
        transform: translateZ(150px);
    }
 
    .tier-4 .box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;
        height: 20%;
        background: #fff;
        box-shadow: 0 0 10px #000;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
 
    .tier-4 .box .foot {
        display: flex;
    }
 
    .tier-4 .box .foot button {
        flex: 1
    }
</style>


点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

0 评论

作者其他优质文章

正在加载中
Web前端工程师
手记
33
粉丝
29
获赞与收藏
84

关注作者,订阅最新文章

阅读免费教程

感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号

举报

0/150
提交
取消