Visit5.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <div class="Visit5" data-aria-viewport-area tabindex="0"
  3. aria-label aria-description="You have reached the content area under the Accessibility page. To browse the content, please use the tab key."
  4. >
  5. <div class="conten">
  6. <div class="row">
  7. <div>
  8. <h3 tabindex="0">Facilities for the Handicapped</h3>
  9. <p tabindex="0">Wheelchairs are available for visitors with special needs. Professional consultants and guides are on hand to help.</p>
  10. <br />
  11. <p tabindex="0">
  12. In addition to professional commentators in the exhibition halls, 15 advanced self-service
  13. screens and six special ones for people in wheelchairs have been installed in the exhibit
  14. areas. Visitors can read and download data, or carry out interactive operations via these
  15. screens. A total of 18 card-operated telephones, including six for those in wheelchairs,
  16. have also been installed.
  17. </p>
  18. </div>
  19. <div>
  20. <img src="../../assets/images/Visit/access1.jpg" alt="Facilities for the Handicapped"
  21. tabindex="0" aria-description="Facilities for the Handicapped"
  22. >
  23. </div>
  24. </div>
  25. <div class="row">
  26. <div>
  27. <img src="../../assets/images/Visit/access2.jpg" alt="Nursery Room"
  28. tabindex="0" aria-description="Nursery Room"
  29. >
  30. </div>
  31. <div class="blank">
  32. <h3 tabindex="0">Nursery Room</h3>
  33. <p tabindex="0">
  34. Nursery room is available on the 5th floor of the museum. Professional consultants
  35. and guides are on hand to help.
  36. </p>
  37. </div>
  38. </div>
  39. <div class="row">
  40. <div>
  41. <h3 tabindex="0">Lockers</h3>
  42. <p tabindex="0">
  43. Lockers are available on the 1st floor, the right-hand side of the north entrance. Professional
  44. consultants and guides are on hand to help.
  45. </p>
  46. </div>
  47. <div>
  48. <img src="../../assets/images/Visit/access3.jpg" alt="Lockers"
  49. tabindex="0" aria-description="Lockers"
  50. >
  51. </div>
  52. </div>
  53. </div>
  54. </div>
  55. </template>
  56. <script>
  57. export default {
  58. name: "Visit5",
  59. components: {},
  60. data() {
  61. //这里存放数据
  62. return {};
  63. },
  64. //监听属性 类似于data概念
  65. computed: {},
  66. //监控data中的数据变化
  67. watch: {},
  68. //方法集合
  69. methods: {},
  70. //生命周期 - 创建完成(可以访问当前this实例)
  71. created() {},
  72. //生命周期 - 挂载完成(可以访问DOM元素)
  73. mounted() {
  74. this.$eventBus.$emit('request-read', `You have reached the Accessibility page under the Visit section. This page includes a navigation section, six window sections, and one interactive section. To choose an area, please hit the shortcut key.`)
  75. },
  76. beforeCreate() {}, //生命周期 - 创建之前
  77. beforeMount() {}, //生命周期 - 挂载之前
  78. beforeUpdate() {}, //生命周期 - 更新之前
  79. updated() {}, //生命周期 - 更新之后
  80. beforeDestroy() {}, //生命周期 - 销毁之前
  81. destroyed() {}, //生命周期 - 销毁完成
  82. activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
  83. };
  84. </script>
  85. <style lang='less' scoped>
  86. .Visit5{
  87. .conten{
  88. color: #000;
  89. width: 1200px;
  90. font-size: 18px;
  91. line-height: 26px;
  92. margin: auto;
  93. .row{
  94. width: 866px;
  95. display: flex;
  96. &>div{
  97. width: 50%;
  98. &>h3{
  99. padding-top: 30px;
  100. font-size: 18px;
  101. font-weight: 700;
  102. margin-bottom: 20px;
  103. }
  104. &>p{
  105. font-size: 14px;
  106. }
  107. &>img{
  108. width: 100%;
  109. }
  110. }
  111. .blank{
  112. padding-left: 10px;
  113. }
  114. }
  115. }
  116. }
  117. </style>