secondIntro.wxml 960 B

12345678910111213141516171819202122
  1. <!--pages/secondIntro/secondIntro.wxml-->
  2. <view class="indexContainer">
  3. <!-- 轮播图区域 -->
  4. <swiper class="banners" autoplay circular interval="2000" indicator-dots="true" indicator-color="ivory" indicator-active-color="#d43c33" next-margin="0rpx" previous-margin="0rpx">
  5. <swiper-item>
  6. <image src="../../images/1.jpg"></image>
  7. </swiper-item>
  8. <swiper-item>
  9. <image src="../../images/2.jpg"></image>
  10. </swiper-item>
  11. </swiper>
  12. <!-- 景区介绍的正文 -->
  13. <view class="textContainer">
  14. <view class="titleHead">
  15. <text>马村简介</text>
  16. </view>
  17. <view class="introContent" style="white-space: pre-wrap;">
  18. <text>青青园中葵,朝露待日晞。阳春布德泽,万物生光辉。常恐秋节至,焜黄华叶衰。百川东到海,何时复西归?少壮不努力,老大徒伤悲!</text>
  19. </view>
  20. </view>
  21. </view>