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