Blame view

examples/routers/spin.vue 6.13 KB
2d43f26b   梁灏   support Spin
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
  <!--<style>-->
      <!--.demo-spin-icon-load{-->
          <!--animation: ani-demo-spin 1s linear infinite;-->
      <!--}-->
      <!--@keyframes ani-demo-spin {-->
          <!--from { transform: rotate(0deg);}-->
          <!--50%  { transform: rotate(180deg);}-->
          <!--to   { transform: rotate(360deg);}-->
      <!--}-->
      <!--.demo-spin-col{-->
          <!--height: 100px;-->
          <!--position: relative;-->
          <!--border: 1px solid #eee;-->
      <!--}-->
      <!--/*loading*/-->
      <!--.loader{-->
          <!--width: 30px;-->
          <!--height: 30px;-->
          <!--position: relative;-->
          <!--margin: 0 auto;-->
      <!--}-->
      <!--.circular {-->
          <!-- -webkit-animation: rotate 2s linear infinite;-->
          <!--animation: rotate 2s linear infinite;-->
          <!--height: 100%;-->
          <!-- -webkit-transform-origin: center center;-->
          <!-- -ms-transform-origin: center center;-->
          <!--transform-origin: center center;-->
          <!--width: 100%;-->
          <!--position: absolute;-->
          <!--top: 0;-->
          <!--bottom: 0;-->
          <!--left: 0;-->
          <!--right: 0;-->
          <!--margin: auto;-->
      <!--}-->
  
      <!--.path {-->
          <!--stroke-dasharray: 1, 200;-->
          <!--stroke-dashoffset: 0;-->
          <!-- -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;-->
          <!--animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;-->
          <!--stroke-linecap: round;-->
      <!--}-->
      <!--@-webkit-keyframes-->
      <!--rotate {  100% {-->
          <!-- -webkit-transform: rotate(360deg);-->
          <!--transform: rotate(360deg);-->
      <!--}-->
      <!--}-->
      <!--@keyframes-->
      <!--rotate {  100% {-->
          <!-- -webkit-transform: rotate(360deg);-->
          <!--transform: rotate(360deg);-->
      <!--}-->
      <!--}-->
      <!--@-webkit-keyframes-->
      <!--dash {  0% {-->
          <!--stroke-dasharray: 1, 200;-->
          <!--stroke-dashoffset: 0;-->
      <!--}-->
          <!--50% {-->
              <!--stroke-dasharray: 89, 200;-->
              <!--stroke-dashoffset: -35;-->
          <!--}-->
          <!--100% {-->
              <!--stroke-dasharray: 89, 200;-->
              <!--stroke-dashoffset: -124;-->
          <!--}-->
      <!--}-->
      <!--@keyframes-->
      <!--dash {  0% {-->
          <!--stroke-dasharray: 1, 200;-->
          <!--stroke-dashoffset: 0;-->
      <!--}-->
          <!--50% {-->
              <!--stroke-dasharray: 89, 200;-->
              <!--stroke-dashoffset: -35;-->
          <!--}-->
          <!--100% {-->
              <!--stroke-dasharray: 89, 200;-->
              <!--stroke-dashoffset: -124;-->
          <!--}-->
      <!--}-->
      <!--@-webkit-keyframes-->
      <!--color {  100%, 0% {-->
          <!--stroke: #d62d20;-->
      <!--}-->
          <!--40% {-->
              <!--stroke: #0057e7;-->
          <!--}-->
          <!--66% {-->
              <!--stroke: #008744;-->
          <!--}-->
          <!--80%, 90% {-->
              <!--stroke: #ffa700;-->
          <!--}-->
      <!--}-->
      <!--@keyframes-->
      <!--color {  100%, 0% {-->
          <!--stroke: #d62d20;-->
      <!--}-->
          <!--40% {-->
              <!--stroke: #0057e7;-->
          <!--}-->
          <!--66% {-->
              <!--stroke: #008744;-->
          <!--}-->
          <!--80%, 90% {-->
              <!--stroke: #ffa700;-->
          <!--}-->
      <!--}-->
  <!--</style>-->
  <!--<template>-->
      <!--<div>-->
          <!--<Row>-->
              <!--<i-col class="demo-spin-col" span="8">-->
                  <!--<Spin fix>加载中...</Spin>-->
              <!--</i-col>-->
              <!--<i-col class="demo-spin-col" span="8">-->
                  <!--<Spin fix>-->
                      <!--<Icon type="load-c" size=18 class="demo-spin-icon-load"></Icon>-->
                      <!--<div>Loading</div>-->
                  <!--</Spin>-->
              <!--</i-col>-->
              <!--<i-col class="demo-spin-col" span="8">-->
                  <!--<Spin fix>-->
                      <!--<div class="loader">-->
                          <!--<svg class="circular" viewBox="25 25 50 50">-->
                              <!--<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="5" stroke-miterlimit="10"></circle>-->
                          <!--</svg>-->
                      <!--</div>-->
                  <!--</Spin>-->
              <!--</i-col>-->
          <!--</Row>-->
      <!--</div>-->
  <!--</template>-->
  <!--<script>-->
      <!--// 部分样式代码冗长,未作展示-->
      <!--export default {-->
  
      <!--}-->
  <!--</script>-->
  
  <style>
      .demo-spin-article{
4fffb066   梁灏   update Spin style
147
148
          /*width: 400px;*/
          /*height: 200px;*/
2d43f26b   梁灏   support Spin
149
150
          padding: 10px;
          position: relative;
4fffb066   梁灏   update Spin style
151
          border: 1px solid red;
2d43f26b   梁灏   support Spin
152
153
154
155
156
157
158
159
160
161
          text-align: center;
      }
      .demo-spin-article h3{
          font-size: 22px;
      }
      .demo-spin-article address{
          color: #999;
          font-style: normal;
          font-size: 14px;
      }
7fdad3a3   梁灏   update $Spin and ...
162
      .demo-spin-article p {
2d43f26b   梁灏   support Spin
163
164
165
166
167
168
169
170
171
172
173
174
175
176
          font-size: 16px;
      }
  </style>
  <template>
      <div>
          <div class="demo-spin-article">
              <h3>登金陵凤凰台</h3>
              <address>李白</address>
              <article>
                  <p>凤凰台上凤凰游,凤去台空江自流。</p>
                  <p>吴宫花草埋幽径,晋代衣冠成古丘。</p>
                  <p>三山半落青天外,二水中分白鹭洲。</p>
                  <p>总为浮云能蔽日,长安不见使人愁。</p>
              </article>
4fffb066   梁灏   update Spin style
177
178
179
180
              <Spin size="large" fix v-if="spinShow">
                  <!--<Icon type="load-c" size=18 class="demo-spin-icon-load"></Icon>-->
                  <!--<div>Loading</div>-->
              </Spin>
2d43f26b   梁灏   support Spin
181
182
183
          </div>
          <br>
          切换显示状态:<i-switch @on-change="spinShow = !spinShow"></i-switch>
297648f1   梁灏   fixed #1063
184
185
          <Button @click="show">show</Button>
          <Button @click="hide">hide</Button>
2d43f26b   梁灏   support Spin
186
187
188
189
190
191
192
193
      </div>
  </template>
  <script>
      export default {
          data () {
              return {
                  spinShow: true
              }
297648f1   梁灏   fixed #1063
194
195
196
          },
          methods: {
              show () {
7fdad3a3   梁灏   update $Spin and ...
197
                  this.$Spin.show();
297648f1   梁灏   fixed #1063
198
199
200
201
202
203
204
                  setTimeout(() => {
                      this.$Spin.hide();
                  }, 3000)
              },
              hide () {
                  this.$Spin.hide();
              }
2d43f26b   梁灏   support Spin
205
206
207
          }
      }
  </script>