当前位置:   article > 正文

微信小程序案例2-2:本地生活_微信小程序本地生活

微信小程序本地生活

三、实现步骤

(一)创建项目

  • 项目名称:本地生活

  • 模板选择:不使用模板
    在这里插入图片描述

  • 单击【确定】按钮
    在这里插入图片描述

(二)创建页面

  • app.json里配置pages/grid/grid页面,删除其它页面
    在这里插入图片描述

(三)准备图片素材

  • 在项目根目录创建images目录,拷贝项目所需图片素材
    在这里插入图片描述

(四)编写页面结构

1、编写轮播区域页面结构

  • 轮播图有指示点,自动轮播,时间间隔3000毫秒
    在这里插入图片描述
<!--pages/grid/grid.wxml-->
<!-- 轮播图区域 -->
<swiper indicator-dots="true" indicator-color="blue" indicator-active-color="red" autoplay="true" circular="true" interval="3000">
  <swiper-item>
    <view class="item">
      <image src="/images/swiper01.jpg" mode="aspectFill" style="width: 100%; height: 100%;"/>
    </view>
  </swiper-item>
  <swiper-item>
    <view class="item">
      <image src="/images/swiper02.jpg" mode="aspectFill" style="width: 100%; height: 100%;"/>
    </view>
  </swiper-item>
  <swiper-item>
    <view class="item">
      <image src="/images/swiper03.jpg" mode="aspectFill" style="width: 100%; height: 100%;"/>
    </view>
  </swiper-item>
</swiper>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 预览效果(看不见图片,可以看见指示点在循环)
    在这里插入图片描述

2、编写九宫格区域页面结构

  • view组件里嵌套9个view组件
    在这里插入图片描述
<!-- 九宫格区域 -->
<view class="grids">
    <view class="grid-item">
        <image src="/images/food.png"/>
        <text>美食</text>
    </view>
    <view class="grid-item">
        <image src="/images/fitup.png"/>
        <text>装修</text>
    </view>
    <view class="grid-item">
        <image src="/images/bath.png"/>
        <text>洗浴</text>
    </view>
    <view class="grid-item">
        <image src="/images/car.png"/>
        <text>汽车</text>
    </view>
    <view class="grid-item">
        <image src="/images/sing.png"/>
        <text>唱歌</text>
    </view>
    <view class="grid-item">
        <image src="/images/house.png"/>
        <text>住宿</text>
    </view>
    <view class="grid-item">
        <image src="/images/study.png"/>
        <text>学习</text>
    </view>
    <view class="grid-item">
        <image src="/images/work.png"/>
        <text>工作</text>
    </view>
    <view class="grid-item">
        <image src="/images/marry.png"/>
        <text>结婚</text>
    </view>
</view>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 预览效果(显然不是我们想要的结果)
    在这里插入图片描述

(五)编写页面样式

1、编写轮播图区域页面样式

  • 设置swiper容器高度:350rpx,设置图片容器的高度和宽度。
    在这里插入图片描述
.grids {
  height: 350rpx;
}

.item {
  width: 100%;
  height: 100%;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

在这里插入图片描述

2、编写九宫格区域页面样式

  • 整体页面样式
.grids {
    display: flex;
    flex-wrap: wrap; /* 自动绕行 */
}
  • 1
  • 2
  • 3
  • 4
  • 每个格子页面样式
.grids .grid-item {
  width: 250rpx;/* 750 ÷ 3 =250 */
  height: 250rpx;
  border-right: 1rpx solid #eee;
  border-bottom: 1rpx solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 清除第3个格子的右边框 */
.grids .grid-item:nth-child(3) {
  border-right: 0;
}
/* 清除第6个格子的右边框 */
.grids .grid-item:nth-child(6) {
  border-right: 0;
}
/* 清除第9个格子的右边框 */
.grids .grid-item:nth-child(9) {
  border-right: 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 每个格子中的图片和文字的页面样式
    在这里插入图片描述
/*每个格子内的图片样式*/
.grids .grid-item image {
  width: 90rpx;
  height: 90rpx;
}

/*每个格子内的文本样式*/
.grids .grid-item text {
  color: #999;
  font-size: 35rpx;
  margin-top: 20rpx;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 预览效果
    在这里插入图片描述

(六)查看真机调试效果

  • 查看轮播图和九宫格
    在这里插入图片描述
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/775193
推荐阅读
相关标签
  

闽ICP备14008679号