| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <template>
- <teleport to="body">
- <div :key="id" class="loading">
- <input
- ref="focusInput"
- autocomplete="off"
- class="focus-input"
- />
- <div
-
- class="spinner"
- >
- <div class="circ1" />
- <div class="circ2" />
- <div class="circ3" />
- <div class="circ4" />
- <h4>{{ text }}</h4>
- </div>
- </div>
- </teleport>
- </template>
- <script>
- import UUID from '../../common/Uuid.js';
- export default {
- // eslint-disable-next-line
- name: 'Loading',
- props: {
- 'text': {
- type: String,
- default: '',
- },
- },
- data: function () {
- return {
- 'id': 'loading_' + UUID.createUUID(),
- };
- },
- mounted: function () {
- var _self = this;
- // 获取焦点对象
- _self.activeElement = document.activeElement;
- _self.$nextTick(function () {
- _self.$refs.focusInput.focus();
- });
- },
- beforeUnmount: function(){
- var _self = this;
- // 恢复焦点对象
- if(_self.activeElement != null){
- _self.activeElement.focus();
- _self.activeElement = null;
- }
- },
- methods: {
- // 居中显示
- // centerLoader: function () {
- // var _self = this;
- // var winW = $(window).width();
- // var winH = $(window).height();
- // var id = '#' + _self.id;
- // var spinnerW = $(id).outerWidth();
- // var spinnerH = $(id).outerHeight();
- // $(id).css({
- // 'position': 'absolute',
- // 'left': ((winW / 2) - (spinnerW / 2)) + 'px',
- // 'top': ((winH / 2) - (spinnerH / 2)) + 'px',
- // });
- // },
- },
- };
- </script>
- <style scoped>
- .loading {
- display: block;
- position: fixed;
- width: 100%;
- height: 100%;
- top: 0px;
- left: 0px;
- z-index: 99999;
- background-color: #2ecc71;
- opacity: 0.5;
- }
- .circle1 {
- top: 0;
- left: 0;
- }
- .circle2 {
- top: 0;
- right: 0;
- }
- .circle3 {
- right: 0;
- bottom: 0;
- }
- .circle4 {
- left: 0;
- bottom: 0;
- }
- .spinner {
- width: 90px;
- height: 30px;
- text-align: center;
- position: fixed;
- left: calc(50% - 45px);
- top: calc(50% - 15px);
- }
- .spinner > div {
- background-color: #fff;
- height: 15px;
- width: 15px;
- margin-left: 3px;
- border-radius: 50%;
- display: inline-block;
- -webkit-animation: stretchdelay 0.7s infinite ease-in-out;
- animation: stretchdelay 0.7s infinite ease-in-out;
- }
- .spinner .circ2 {
- -webkit-animation-delay: -0.6s;
- animation-delay: -0.6s;
- }
- .spinner .circ3 {
- -webkit-animation-delay: -0.5s;
- animation-delay: -0.5s;
- }
- .spinner .circ4 {
- -webkit-animation-delay: -0.4s;
- animation-delay: -0.4s;
- }
- .spinner .circ5 {
- -webkit-animation-delay: -0.3s;
- animation-delay: -0.3s;
- }
- @-webkit-keyframes stretchdelay {
- 0%,
- 40%,
- 100% {
- -webkit-transform: translateY(-10px);
- }
- 20% {
- -webkit-transform: translateY(-20px);
- }
- }
- @keyframes stretchdelay {
- 0%,
- 40%,
- 100% {
- transform: translateY(-10px);
- -webkit-transform: translateY(-10px);
- }
- 20% {
- transform: translateY(-20px);
- -webkit-transform: translateY(-20px);
- }
- }
- .focus-input {
- position: absolute;
- left: -10px;
- top: -10px;
- width: 0px;
- height: 0px;
- }
- </style>
|