page8.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <skeleton title="会议环境" titleLine="ACTIVITY TRIP">
  3. <div class="main">
  4. <img src="./img/environment.webp" class="line1 animate__animated animate__fadeInUp" style="margin: 0;" />
  5. <div style="animation-delay: 0.2s;" class="line1 animate__animated animate__fadeInUp">
  6. <img src="./img/environment2-1.webp" class="flex2">
  7. <img src="./img/environment2-2.webp" class="flex1">
  8. </div>
  9. <div style="animation-delay: 0.4s;" class="line1 animate__animated animate__fadeInUp">
  10. <img src="./img/environment2-2.webp" class="flex1">
  11. <img src="./img/environment2-1.webp" class="flex2">
  12. </div>
  13. </div>
  14. </skeleton>
  15. </template>
  16. <script setup>
  17. import skeleton from './skeleton.vue';
  18. </script>
  19. <style lang="scss">
  20. // 动画库
  21. @import url(./sass/animation.scss);
  22. @import url(./sass/base.scss);
  23. .main {
  24. width: 80%;
  25. margin: -1em auto 0 auto;
  26. .line1{
  27. width: 100%;
  28. height: 17vh;
  29. margin-bottom: .25em;
  30. .flex2{
  31. display: inline-block;
  32. width: 66%;
  33. margin: .1em .05em 0 0;
  34. height: 100%;
  35. }
  36. .flex1{
  37. display: inline-block;
  38. width: 33%;
  39. margin: .1em 0 0 .05em;
  40. height: 100%;
  41. }
  42. }
  43. img{
  44. border-radius: 3px;
  45. border: 1px solid #79539e;
  46. }
  47. }
  48. </style>