signOut.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="content">
  3. <!-- <view class="box">
  4. <map style="width: 100%; height: 100vh;"
  5. scale="14" show-location="true"
  6. :latitude="latitude" :longitude="longitude" :markers="covers">
  7. </map>
  8. </view> -->
  9. <view id="firstScreenPage">
  10. <view class="loader-inner ball-beat">
  11. <view></view> <view></view> <view></view>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. }
  21. },
  22. onLoad(opt) {
  23. uni.clearStorageSync();
  24. uni.navigateTo({
  25. url:'../login/empower'
  26. })
  27. },
  28. methods: {
  29. }
  30. }
  31. </script>
  32. <style>
  33. .content {
  34. /* display: flex;
  35. flex-direction: column;
  36. align-items: center;
  37. justify-content: center; */
  38. }
  39. .box{
  40. }
  41. #firstScreenPage { top:50%; left:50%; position: absolute; -webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%); z-index:100; }
  42. @-webkit-keyframes ball-beat { 50% { opacity: 0.2; -webkit-transform: scale(0.75); transform: scale(0.75); } 100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } }
  43. @keyframes ball-beat { 50% { opacity: 0.2; -webkit-transform: scale(0.75); transform: scale(0.75); } 100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); } }
  44. .ball-beat > view { background-color: #279fcf; width: 15px; height: 15px; border-radius: 100% !important; margin: 2px; -webkit-animation-fill-mode: both; animation-fill-mode: both; display: inline-block; -webkit-animation: ball-beat 0.7s 0s infinite linear; animation: ball-beat 0.7s 0s infinite linear; }
  45. .ball-beat > view:nth-child(2n-1) { -webkit-animation-delay: 0.35s !important; animation-delay: 0.35s !important; }
  46. </style>