实训Day2

日期

2019年6月 17日

第 2 天  共 10天

实习地点

科技楼423

教学大纲中规定的实习教学内容

校内综合实训是系统讲授微信小程序开发技术,通过小程序开发项目实例来训练学生的实践能力,检验学生对微信小程序开发技术所学知识的综合运用能力的重要环节。每位学生需完成老师布置的实验内容,并完成综合性实训项目的开发。从而达到对所学知识的深刻理解,进而为今后更深入的学习和应用打下坚实的基础。

实习

目的及

要求

1、掌握微信小程序项目环境搭建;

2、掌握微信小程序项目界面设计编写;;

3、掌握微信小程序项目业务逻辑处理;

4、掌握MVVM设计模式框架开发;

5、通过本课程的学习,培养学生观察、分析、解决问题的能力;

6、培养学生严肃认真、实事求是的良好作风。

任务

完成

情况、

主要

收获

体会

 

 

实训的第二天老师开始给我们介绍微信小程序项目的环境搭建,教我们如何使用微信小程序的开发工具。老师带着我们开始微信小程序项目界面的设计和编写,实训结束之后我们利用课余时间跟着老师讲解的步骤去完成微信小程序的界面设计。

   在学习的过程中老师给我们讲解了骰子布局,我们回去之后实现了骰子布局的多种情况,除此之外,我们完成了小程序的环境搭建和界面设计,对小程序的设计有了进一步理解。

 

 

 

教师

指导

(辅导)

内容

辅导学生学习微信小程序项目环境搭建基础知识,指导学生自我进行微信小程序项目环境搭建

指导方式

面授

指导时长(分钟)

300

其它

需说

明的

情况

 

 

 

 

 

 

学习内容:

1、微信小程序开发工具的使用

2、微信小程序环境的搭建和初始界面的设计

 

作业:

1.骰子布局

index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
	<title>骰子布局2</title>
	<link rel="stylesheet" type="text/css" href="aa.css">
</head>
<body>
<div class="one1-face">
  <span class="pip"></span>
</div>
<div class="one2-face">
  <span class="pip"></span>
</div><div class="one3-face">
  <span class="pip"></span>
</div>
</div><div class="one4-face">
  <span class="pip"></span>
</div>
</div><div class="one5-face">
  <span class="pip"></span>
</div>
</div><div class="one6-face">
  <span class="pip"></span>
</div>
</div><div class="one7-face">
  <span class="pip"></span>
</div>
<!-- 1111111111111111111111111111111111111 -->
<div class="two1-face">
  <span class="pip"></span>
  <span class="pip"></span>
</div>
<div class="two2-face">
  <span class="pip"></span>
  <span class="pip"></span>
</div>
<div class="two3-face">
  <span class="pip"></span>
  <span class="pip"></span>
</div>
<div class="two4-face">
  <span class="pip"></span>
  <span class="pip"></span>
</div>
<div class="two5-face">
  <span class="pip"></span>
  <span class="pip"></span>
</div>
<div class="two6-face">
  <span class="pip"></span>
  <span class="pip"></span>
</div>
<!-- 2222222222222222222222 -->
<div class="third1-face">
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
</div>
<!-- 333333333333333333 -->
<div class="four-face">
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
</div>
<!-- 444444444444444 -->
<div class="six1-face">
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
</div>
<div class="six2-face">
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
</div>
<div class="nine1-face">
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
  <span class="pip"></span>
</div>
</body>
</html>
index.css
.one1-face {
  display: flex;
}

.one2-face {
  display: flex;
  justify-content: center;
}

.one3-face {
  display: flex;
  justify-content: flex-end;
}

.one4-face {
  display: flex;
  align-items: center;
}

.one5-face {
  display: flex;
  justify-content: center;
  align-items: center;
}

.one6-face {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.one7-face {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
/*1111111111111111111111111111111111111111111111*/
.two1-face {
  display: flex;
  justify-content: space-between;
}

.two2-face {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.two3-face {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.two4-face {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.two5-face {
  display: flex;
}
.two5-face .pip:nth-of-type(2){
  align-self: center;
}

.two6-face {
  display: flex;
  justify-content: space-between;
}

.two6-face .pip:nth-of-type(2) {
  align-self: flex-end;
}
/*22222222222222222222222222222222*/

.third1-face {
  display: flex;
}
.third1-face .pip:nth-of-type(2) {
  align-self: center;
}

.third1-face .pip:nth-of-type(3) {
  align-self: flex-end;
}
/*33333333333333333333*/
.four-face {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: space-between;
}
/*4444444444444*/
.six1-face {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.six2-face {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-between;
}
/*66666666666666*/
.nine1-face {
  display: flex;
  flex-wrap: wrap;
}
/*99999999999999999*/





* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: center;
  flex-wrap: wrap;
  align-content: center;
  font-family: 'Open Sans', sans-serif;
  
  background: linear-gradient(top, #222, #333);
}

[class$="face"] {
  margin: 16px;
  padding: 4px;
  
  background-color: #e7e7e7;
  width: 104px;
  height: 104px;
  object-fit: contain;
  
  box-shadow:
    inset 0 5px white, 
    inset 0 -5px #bbb,
    inset 5px 0 #d7d7d7, 
    inset -5px 0 #d7d7d7;
  
  border-radius: 10%;
}

.pip {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 4px;

  background-color: #333;
  box-shadow: inset 0 3px #111, inset 0 -3px #555;
}

运行结果:

 

特殊骰子的实现

html
<div class="six3-face">
  <div class="row">
    <span class="pip"></span>
    <span class="pip"></span>
    <span class="pip"></span>
  </div>
  <div class="row">
    <span class="pip"></span>
  </div>
  <div class="row">
     <span class="pip"></span>
     <span class="pip"></span>
  </div>
</div>

css
.six3-face {
  display: flex;
  flex-wrap: wrap;
}
.six3-face .row{
  flex-basis: 100%;
  display:flex;
}
.six3-face .row:nth-child(2){
  justify-content: center;
}

.six3-face .row:nth-child(3){
  justify-content: space-between;
}

 

 

2、小程序的初始界面设计


{
  "pages": [
    "pages/index/index",
    "pages/classify/classify",
    "pages/shoppingcat/shoppingcat",
    "pages/mine/mine"
  ],
  "window": {
    "backgroundTextStyle": "dark",
    "navigationBarBackgroundColor": "#e94",
    "navigationBarTitleText": "大橘万睡万睡",
    "navigationBarTextStyle": "white",
    "enablePullDownRefresh": true,
    "backgroundColor": "#ddddff"
  },
  "tabBar": {
    "color": "#666",
    "selectedColor": "#5fdec9",
    "list": [
      {
        "pagePath": "pages/index/index",
        "text": "首页",
        "iconPath":"assets/icons/home.png",
        "selectedIconPath":"assets/icons/achome.png"
      },
      {
        "pagePath":"pages/classify/classify",
        "text": "分类",
        "iconPath":"assets/icons/classify.png",
        "selectedIconPath":"assets/icons/acclassify.png"
      },
      {
        "pagePath":"pages/shoppingcat/shoppingcat",
        "text": "购物车",
        "iconPath":"assets/icons/shopcart.png",
        "selectedIconPath":"assets/icons/acshopcart.png"
      },
      {
        "pagePath":"pages/mine/mine",
        "text": "我的",
        "iconPath":"assets/icons/mine.png",
        "selectedIconPath":"assets/icons/acmine.png"
      }
    ]
  },
  "sitemapLocation": "sitemap.json"
}

截图:

 

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值