第4章作业

操作题:

1.使用canvas组件的绘制:

wxml:

<canvas canvas-id="olympicRings" style="width: 400px; height: 300px;"></canvas>

js:

Page({
    onReady: function () {
      const ctx = wx.createCanvasContext('olympicRings')
      ctx.beginPath()
      ctx.arc(60, 60, 50, 0,3 * Math.PI)
      ctx.setStrokeStyle('blue')
      ctx.setLineWidth(10)
      ctx.stroke()
  
      ctx.beginPath()
      ctx.arc(165, 60, 50, 0, 3* Math.PI)
      ctx.setStrokeStyle('yellow')
      ctx.stroke()
  
      ctx.beginPath()
      ctx.arc(270, 60, 50, 0, 3* Math.PI)
      ctx.setStrokeStyle('green')
      ctx.stroke()
  
      ctx.beginPath()
      ctx.arc(110,120, 50, 0, 3* Math.PI)
      ctx.setStrokeStyle('red')
      ctx.stroke()
  
      ctx.beginPath()
      ctx.arc(220, 120, 50, 0, 3* Math.PI)
      ctx.setStrokeStyle('black')
      ctx.stroke()
  
      ctx.draw()
    }
  })
  

运行结果图:

2.使用相应组件,完成"书单"页面

wxml:

<view class="p1">
  <view class="p2">培养商业意识,走出生活,职场和事业的困境</view>
  <view class="p3">创新者是如何思考问题的?本书单包括了互联网,思维方式,商业,文案,市场,营销等方方面面,是在思维方式上的创新,略去传统商学院的教条</view>
</view>
<view class="shu">
  <view class="imgone" style="display: flex;">
   <image class="img1" src="./img/01c56d6031ccc011013f3745e2d03d.png@1280w_1l_2o_100sh.png"/>
    <view class="textone">
      <view class="text1">《西游记》</view>
      <view class="text2">吴承恩</view>
      <view class="text3">《西游记》前七回叙述孙悟空出世,有大闹天宫等故事。此后写孙悟空随唐僧西天取经</view>
    </view>
  </view>
  <view class="xian"></view>
  <view class="imgtwo" style="display: flex;">
    <image class="img2" src="./img/t01675cf2c092f21789.jpg"/>
    <view class="texttwo">
      <view class="text1">《水浒传》</view>
      <view class="text2">施耐庵</view>
      <view class="text3">《水浒传》以宋江领导的起义军为主要题材,通过一系列梁山英雄反抗压迫、英勇斗争的生动故事</view>
    </view>
  </view>
</view>

wxss:

 .head{
    font-size: 60rpx;
  }
  .p1{
    background-color: black;
  }
  .p2{
    color: aliceblue;
    text-align: center;
    font-size: 45rpx;
    padding: 30rpx;
  }
  .p3{
    color: aliceblue;
    padding: 20rpx;
  }
  .shu{
    margin: 50rpx;
  }
  .textone{
    margin-left: 50rpx;
  }
  .img1{
    width: 700rpx;
    height: 350rpx;
  }
  .img2{
    width: 700rpx;
    height: 350rpx;
  }
  .text1{
    font-size: 70rpx;
    font-weight: 700;
  }
  .text2{
    font-size: 40rpx;
    font-weight: 600;
  }
  .xian{
    margin-top: 50rpx;
    border-bottom: 4px solid #ccc;
  }
  .imgtwo{
    margin-top: 50rpx;
  }
  .texttwo{
    margin-left: 50rpx;
  }

json:

 "window": {
    
        "navigationBarBackgroundColor": "#393a3e",
        "navigationBarTitleText": "← 书单",
        "navigationBarTextStyle": "black"
        
    },

 运行结果图:

3.使用相应组件,完成“西安找拼车“”小程序部分界面

wxml:

<!-- index.wxml -->  
<view class="container">  
  <view class="form-item">  
    <view class="aa">联系方式(手机微信至少添一项)</view>  
    <view class="line"></view>  
  </view>  
  <view class="form-item flex-row">  
    <text>称呼*</text>  
    <input type="text" placeholder="请输入称呼" class="input-field" />  
  </view>  
  <view class="line"></view>  
  <view class="form-item flex-row">  
    <text>手机号</text>  
    <input type="number" placeholder="请输入手机号" class="input-field" />  
  </view>  
  <view class="line"></view>  
  <view class="form-item flex-row">  
    <text>微信号</text>  
    <input type="text" placeholder="请输入微信号" class="input-field" />  
  </view>  
  <view class="line"></view>  
  <view class="form-item">  
    <view class="bb">拼车信息</view>  
    <view class="line"></view>  
  </view>  
  <view class="form-item flex-row">  
    <text >出发地点*</text>  
    <input type="text" placeholder="请输入出发地点" class="input-field" />  
  </view>  
  <view class="line"></view>  
  <view class="form-item flex-row">  
    <text>目的地*</text>  
    <input type="text" placeholder="请输入目的地" class="input-field" />  
  </view>  
  <view class="line"></view>  
  <view class="form-item flex-row">  
    <text>空座数*</text>  
    <input type="number" placeholder="请输入空座数" class="input-field" />  
  </view>  
  <view class="line"></view>  
  
</view>

wxss:

  
.flex-row {  
  display: flex;  
   
  justify-content: space-between;   
}  
  
.form-item .text {  
  flex: 1;  
}  
  
.form-item input {  
  flex: 2;  
}  
.aa{
  background: #ebffdf9f;
  width: 740rpx;
  height: 120rpx;

}
.bb{
  background: #ebffdf9f;
  width: 740rpx;
  height: 120rpx;
}
.cc{
  height: 120rpx;
}
.line {  
  height: 2px;
  width: 740rpx;  
  background-color: #ccc;  
  margin: 1rpx 0;  
}  
text{
  position: relative;
  left: -65px;
}
.form-item{
  height: 70px;
}
  

json:

 "window": {
    
        "navigationBarBackgroundColor": "#393a3e",
        "navigationBarTitleText": "西安找拼车",
        "navigationBarTextStyle": "black"
        
    },

 运行结果图:

4.人生进程

wxml:

<view class="doodle" wx:if="{{!bgsrc_index.length}}">
    <image mode="aspectFit" src="{{doodle}}"></image>
</view>
<view class="theme{{canHideNavigation?' customtopnav':''}} {{platform}}">
    <view class="btn-changetheme" style="top: {{navigationTopValue}}px;">
        <view wx:if="{{canHideNavigation}}">
            <button class="topshare" hoverClass="none" openType="share" plain="true">
                <image mode="scaleToFill" src="../../images/ico_share_customtopnav.png"></image>
            </button>
        </view>
        <image bindtap="choseBackground" mode="scaleToFill" src="../../images/ico_theme{{canHideNavigation?'_customtopnav':''}}.png"></image>
    </view>
    <view class="bg-theme">
        <image mode="aspectFill" src="{{bgsrc_index}}"></image>
    </view>
</view>
<view class="container{{bgsrc_index?' zoomout':''}}{{isiPhoneX?' ct-iphonex':''}}">
    <view class="header">
        <view class="note">中国现阶段人均寿命 900 个月</view>
        <view class="past">
            <view wx:if="{{birthday}}">{{birthday}}至今{{langMoreThan}} {{pastMonth}} 个月</view>
        </view>
        <view class="settings">
            <picker bindchange="bindDateChange" end="{{endMonth}}" fields="month" mode="date" start="1949-10" value="{{endMonth}}">
                <view class="btn-setting">
                    <view wx:if="{{birthday}}">换一个日期</view>
                    <view wx:else>点此设置出生年月,查看人生进度</view>
                </view>
            </picker>
            <view bindtap="clearHistory" class="btn-del" hoverClass="none" hoverStartTime="0" hoverStayTime="0" wx:if="{{birthday}}">清除记录</view>
        </view>
    </view>
    <view bindtap="viewHistory" class="main">
        <view class="cell"></view>
        <view class="months">
            <view class="remaining">
                <view class="remaining-before" style="top: {{100-remaining}}%;"></view>
                <view class="remaining-after" style="top: {{100-remaining}}%;"></view>
                <view class="remaining-txt" style="height: {{remaining-3}}%;" wx:if="{{remaining>=6}}">{{remaining}}%</view>
            </view>
        </view>
        <view class="indicator-block indicator-{{activeIndex}}">
            <view class="indicator" wx:for="{{history}}" wx:key="indicator"></view>
        </view>
    </view>
    <view class="footer">
        <text bindtap="changeMotto" class="motto">{{motto}}</text>
    </view>
</view>
<block wx:if="{{canHideTabBar}}">
    <import src="../../templates/nav.wxml"></import>
    <view class="{{platform}}{{isiPhoneX?' nav-iphonex':''}}">
        <template is="nav" data="{{pagename:'home'}}"></template>
    </view>
</block>
<navigator appId="{{adAppid}}" bindtap="clickCustomAd" class="ad-index-float{{canHideNavigation?' custom-ad':''}}{{isiPhoneX?' custom-ad-iphonex':''}} {{platform}}" hoverClass="none" openType="navigate" path="{{adPagePath}}" target="miniProgram" version="release" wx:if="{{adAppid}}">
    <image mode="scaleToFill" src="../../images/ad_acadsoc.png"></image>
</navigator>
<ad class="ad{{isiPhoneX?' ad-iphonex':''}}" unitId="adunit-9033ae8aa80f0225"></ad>

js:

var t = getApp(), a = require("../../4E683285C190288C280E5A82494C27D6.js");

Page({
    data: {
        motto: a.randomMotto(),
        endMonth: a.formatTime(new Date()),
        birthday: wx.getStorageSync("__birth") || "",
        history: wx.getStorageSync("__history") || function() {
            var t = [], a = [], e = wx.getStorageSync("__birth");
            return e && (a = e.split(" "), t.push(a[0] + "-" + a[2])), t;
        }() || [],
        activeIndex: wx.getStorageSync("__activeIndex") || 0,
        pastMonth: wx.getStorageSync("__pastMonth") || 1,
        remaining: a.fixedDecimal("" === wx.getStorageSync("__remaining") ? 100 : 1 * wx.getStorageSync("__remaining"), 2),
        langMoreThan: wx.getStorageSync("__langMoreThan") || "",
        doodle: "",
        bgsrc_index: wx.getStorageSync("__bgsrc_index") || "",
        canHideTabBar: t.globalData.canHideTabBar,
        canHideNavigation: t.globalData.canHideNavigation,
        navigationTopValue: t.globalData.statusBarHeight ? "ios" == t.globalData.res.platform ? t.globalData.statusBarHeight + 4 : t.globalData.statusBarHeight + 8 : 0,
        isiPhoneX: t.globalData.isiPhoneX,
        platform: t.globalData.res.platform,
        adAppid: "",
        adPagePath: ""
    },
    calProgress: function(t, e, i) {
        var n = t.split("-"), o = this.data.endMonth.split("-"), s = n[0] + " 年 " + (n[1] - 0) + " 月", r = this.data.history, g = 12 * (o[0] - n[0]) + (o[1] - n[1]) + 1, c = "";
        r.push(t), (r = a.arrayUnique(r)).length > 5 && r.shift(), e && (i = r.length - 1, 
        this.setData({
            motto: a.randomMotto()
        })), g > 900 && (g = 900, c = "超过");
        var h = a.fixedDecimal(100 - 100 * g / 900, 2);
        this.setData({
            birthday: s,
            history: r,
            pastMonth: g,
            remaining: h,
            langMoreThan: c,
            doodle: n[1] == o[1] ? "../../images/holiday/shengri.png" : ""
        }), wx.setStorageSync("__birth", s), wx.setStorageSync("__history", r), wx.setStorageSync("__pastMonth", g), 
        wx.setStorageSync("__remaining", h), wx.setStorageSync("__langMoreThan", c), "undefined" !== i && (this.setData({
            activeIndex: i
        }), wx.setStorageSync("__activeIndex", i));
    },
    bindDateChange: function(t) {
        this.calProgress(t.detail.value, !0);
    },
    viewHistory: function() {
        var t = this.data.history, e = this.data.activeIndex ? this.data.activeIndex - 1 : t.length - 1, i = a.formatDay();
        t.length && (this.calProgress(t[e], !1, e), this.setData({
            doodle: t[e].split("-")[1] == i.month ? "../../images/holiday/shengri.png" : ""
        }));
    },
    clearHistory: function() {
        var t = this;
        wx.showModal({
            title: "注意",
            content: "即将清除「人生进度」历史记录",
            success: function(a) {
                a.confirm && (t.setData({
                    birthday: "",
                    history: [],
                    activeIndex: 0,
                    pastMonth: 1,
                    remaining: 100,
                    langMoreThan: "",
                    doodle: ""
                }), wx.setStorageSync("__birth", ""), wx.setStorageSync("__history", []), wx.setStorageSync("__pastMonth", 1), 
                wx.setStorageSync("__remaining", 100), wx.setStorageSync("__langMoreThan", ""));
            }
        });
    },
    changeMotto: function() {
        this.setData({
            motto: a.randomMotto()
        });
    },
    clearSavedFile: function() {
        wx.removeSavedFile({
            filePath: this.data.bgsrc_index,
            complete: function(t) {
                console.log(t);
            }
        }), this.setData({
            bgsrc_index: ""
        }), wx.setStorageSync("__bgsrc_index", "");
    },
    choseBackground: function() {
        var t = this;
        wx.showActionSheet({
            itemList: [ "更换背景", "恢复初始样式" ],
            success: function(a) {
                switch (a.tapIndex) {
                  case 0:
                    wx.chooseImage({
                        count: 1,
                        sizeType: [ "compressed" ],
                        sourceType: [ "album" ],
                        success: function(a) {
                            var e = a.tempFilePaths;
                            t.clearSavedFile(), wx.saveFile({
                                tempFilePath: e[0],
                                success: function(a) {
                                    var e = a.savedFilePath;
                                    t.setData({
                                        bgsrc_index: e
                                    }), wx.setStorageSync("__bgsrc_index", e);
                                }
                            });
                        }
                    });
                    break;

                  case 1:
                    t.clearSavedFile();
                }
            },
            fail: function(t) {
                console.log(t.errMsg);
            }
        });
    },
    clickCustomAd: function() {
        var e = t.globalData.res.SDKVersion;
        a.compareVersion(e, "1.3.0") >= 0 && a.compareVersion(e, "2.0.7") <= 0 && wx.navigateToMiniProgram({
            appId: this.data.adAppid,
            path: this.data.adPagePath,
            envVersion: "release"
        });
    },
    onShareAppMessage: function() {
        wx.showShareMenu({
            withShareTicket: !0
        });
        (this.data.birthday || "7777 年 7 月").split(" ")[0];
        return {
            title: "奋斗没有终点,任何时候都是一个起点",
            desc: "",
            path: "pages/index/index",
            imageUrl: "../../images/share.png",
            success: function(t) {}
        };
    },
    onLoad: function() {
        var t = wx.getStorageSync("__history") || [], e = wx.getStorageSync("__activeIndex") || 0, i = a.formatDay(), n = wx.getStorageSync("__visiter") || "new";
        try {
            t.length && (this.calProgress(t[e], !1, e), t[e].split("-")[1] == i.month && this.setData({
                doodle: "../../images/holiday/shengri.png"
            })), "new" == n && (a.showAd(), wx.setStorageSync("__visiter", "old"));
        } catch (t) {}
    }
});

wxss:

.note {
    margin: 40rpx 0 10rpx;
    color: #666;
    font-size: 120%;
    font-weight: 200;
}

.past {
    margin-bottom: 30rpx;
    font-size: 160%;
    font-weight: 300;
}

.settings {
    flex-direction: row;
}

.main,.settings {
    display: flex;
}

.main {
    position: relative;
    flex: 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.motto {
    display: block;
    min-height: 84rpx;
    line-height: 1.5;
    font-size: 26rpx;
}

.zoomout .btn-del,.zoomout .btn-setting,.zoomout .motto,.zoomout .note {
    color: #333;
}

.ad-index-float {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 80rpx;
    height: 80rpx;
    z-index: 31;
}

.custom-ad.ad-index-float {
    bottom: 94rpx;
}

.custom-ad.custom-ad-iphonex {
    bottom: 124rpx!important;
}

.custom-ad-iphonex {
    bottom: 0!important;
}

.ad-index-float image {
    width: 80rpx;
    height: 80rpx;
}

json:

{
    "disableScroll": false,
    "usingComponents": {}
}

运行结果图:

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值