index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <style>
  2. .im-view {
  3. width: 100%;
  4. height: 100%;
  5. }
  6. #imPlugin-loading {
  7. position: fixed;
  8. top: 0;
  9. left: 0;
  10. width: 100%;
  11. height: 100%;
  12. background-color: #fff;
  13. z-index: 1000;
  14. display: flex;
  15. align-items: center;
  16. justify-content: center;
  17. flex-direction: column;
  18. background: #333;
  19. }
  20. .dot {
  21. width: 15px;
  22. height: 15px;
  23. margin-left: 5px;
  24. display: inline-block;
  25. border-radius: 100%;
  26. background: #fff;
  27. animation: dotChange 1s linear infinite alternate;
  28. }
  29. .dot-1 {
  30. animation-delay: .2s;
  31. }
  32. .dot-2 {
  33. animation-delay: .4s;
  34. }
  35. .dot-3 {
  36. animation-delay: .6s;
  37. }
  38. .dot-4 {
  39. animation-delay: .8s;
  40. }
  41. .dot-5 {
  42. animation-delay: 1s;
  43. }
  44. @keyframes dotChange {
  45. 0% {
  46. transform: scale(1);
  47. }
  48. 100% {
  49. transform: scale(2);
  50. }
  51. }
  52. </style>
  53. <section id="imPlugin" class="home">
  54. <div id="imPlugin-loading">
  55. <div>
  56. <span class="dot dot-1"></span>
  57. <span class="dot dot-2"></span>
  58. <span class="dot dot-3"></span>
  59. <span class="dot dot-4"></span>
  60. <span class="dot dot-5"></span>
  61. </div>
  62. </div>
  63. <webview id="im-webview" class="im-view" :src="url"></webview>
  64. </section>