index.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <template>
  2. <view class="content">
  3. <view id="firstScreenPage">
  4. <view class="loader-inner ball-beat">
  5. <view></view> <view></view> <view></view>
  6. </view>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. title: 'Hello'
  15. }
  16. },
  17. onLoad() {
  18. if (navigator.userAgent.indexOf('Mobile') === -1) {
  19. console.log("PC")
  20. uni.navigateTo({
  21. url:'../pc/index'
  22. })
  23. } else{
  24. console.log("移动端")
  25. uni.navigateTo({
  26. url:'../mobile/index'
  27. })
  28. }
  29. },
  30. methods: {
  31. }
  32. }
  33. </script>
  34. <style>
  35. #firstScreenPage { top:50%; left:50%; position: absolute; -webkit-transform: translateY(-50%) translateX(-50%); transform: translateY(-50%) translateX(-50%); z-index:100; }
  36. @-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); } }
  37. @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); } }
  38. .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; }
  39. .ball-beat > view:nth-child(2n-1) { -webkit-animation-delay: 0.35s !important; animation-delay: 0.35s !important; }
  40. </style>