sharePage.vue 443 B

123456789101112131415161718192021222324252627282930313233
  1. <template>
  2. <div class='share-bg-box'>
  3. <image src="../../static/share-bg.png"></image>
  4. </div>
  5. </template>
  6. <script>
  7. </script>
  8. <style>
  9. page {
  10. height: 100%;
  11. background-image: url("data:image/jpg;base64,/9j/4AAQSkZJRgABAQEA....");
  12. }
  13. .share-bg-box {
  14. width: 100%;
  15. height: 100%;
  16. /* background-image: '../../static/share-bg.png'; */
  17. }
  18. .share-bg-box image {
  19. width: 100%;
  20. height: 100%;
  21. z-index: -99;
  22. }
  23. </style>