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
| <template>
| <div class="avue-logo">
| <transition name="fade">
| <span v-if="keyCollapse" key="0" class="avue-logo_subtitle" @click="goIndex">
| {{website.subtitle}}
| </span>
| </transition>
| <transition-group name="fade">
| <span v-if="!keyCollapse" key="1" class="avue-logo_title" @click="goIndex">
| {{ website.title }}
| </span>
| </transition-group>
| </div>
| </template>
|
| <script>
| import { mapGetters } from 'vuex'
| export default {
| name: 'Logo',
| computed: {
| ...mapGetters(['website', 'keyCollapse'])
| },
| methods: {
| goIndex: function () {
| window.location.href = '/'
| }
| }
| }
| </script>
|
| <style lang="scss">
| .fade-leave-active {
| transition: opacity 0.2s;
| }
| .fade-enter-active {
| transition: opacity 2.5s;
| }
| .fade-enter,
| .fade-leave-to {
| opacity: 0;
| }
| .avue-logo {
| position: fixed;
| top: 0;
| left: 0;
| width: 240px;
| height: 64px;
| line-height: 64px;
| background-color: #FFFFFF;
| font-size: 20px;
| overflow: hidden;
| box-sizing: border-box;
| //box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
| color: rgba(0, 0, 0, 0.8);
| z-index: 1024;
| &_title {
| display: block;
| text-align: center;
| font-weight: 300;
| font-size: 16px;
| }
| &_subtitle {
| display: block;
| text-align: center;
| font-size: 18px;
| font-weight: bold;
| color: #fff;
| }
| }
| </style>
|
|