[TOC]
### 1. wxml (模板)
~~~
<view class="m-container">
<image src="{{image}}" class="m-banner {{isPlay?'rotate':''}}"></image>
<image src="{{isPlay?play:pause}}" class="m-play" bind:tap="onMusic"></image>
<image src="images/music.png" class="m-icon"></image>
<view class="text">{{content}}</view>
</view>
~~~
### 2. wxss (模板)
~~~
.m-container{
display: flex;
align-items: center;
flex-direction: column;
}
.m-banner{
width:400rpx;
height:400rpx;
border-radius: 50%;
}
.m-icon{
top:-100rpx;
left:-300rpx;
width:46rpx;
height:142rpx;
position: relative;
}
.m-play{
width:100rpx;
height:100rpx;
position: relative;
top:-230rpx;
}
.rotate {
animation: rotate 6s linear infinite;
}
@keyframes rotate {
0% { transform: rotate(0);}
100% { transform: rotate(360deg);}
}
~~~
### 3. js (模板)
~~~
// components/classic/music/index.js
const audio = wx.getBackgroundAudioManager();
Component({
/**
* 组件的属性列表
*/
properties: {
image: String,
content: String,
url: String,
title: String
},
/**
* 组件的初始数据
*/
data: {
isPlay: false,
play: "images/play.png",
pause: "images/pause.png"
},
/**
* 组件的方法列表
*/
methods: {
onMusic() {
if (this.data.isPlay) {
audio.pause();
this.setData({
isPlay: false
})
} else {
audio.title = this.properties.title;
audio.src = this.properties.url;
this.setData({
isPlay: true
})
}
},
_recoveryMusic() {
if (audio.src == this.properties.url) {
this.setData({
isPlay: true
})
}
if (audio.paused) {
this.setData({
isPlay: false
})
}
},
_monitorMusic() {
//点播放,开始
audio.onPlay(() => {
this.setData({
isPlay: true
})
})
//点暂停,不播放
audio.onPause(() => {
this.setData({
isPlay: false
})
})
//关掉的时候,不播放
audio.onStop(() => {
this.setData({
isPlay: false
})
})
//歌曲放完的时候,自动停止
audio.onEnded(() => {
this.setData({
isPlay: false
})
})
}
},
attached() {
this._recoveryMusic();
this._monitorMusic();
}
})
~~~
### 4. wxml (使用)
~~~
<v-music wx:if="{{classic.type==200}}" url="{{classic.url}}" image="{{classic.image}}" content="{{classic.content}}"></v-music>
~~~
### 5. js (使用)
~~~
onLoad: function (options) {
classicModel.getLatest(res => {
this.setData({
classic: res,
like:res.like_status,
count:res.fav_nums
})
})
},
~~~
### 6. 载次封装http
~~~
import {
HTTP
} from "../utils/http";
class ClassicModel extends HTTP {
getLatest(callback) {
this.request({
url: "/classic/latest",
success: res => {
let index = res.index;
callback(res);
wx.setStorageSync('latest', res.index)
}
})
}
getClassic(index, nextOrprevious, callback) {
/* 有缓存则取缓存没有缓存,则发送http */
const key = (nextOrprevious == "next") ? this._getKey(index + 1) : this._getKey(index - 1);
const classic = wx.getStorageSync(key);
if (classic) {
callback(classic);
} else {
this.request({
url: `/classic/${index}/${nextOrprevious}`,
success: res => {
callback(res);
wx.setStorageSync(this._getKey(res.index), res);
}
})
}
}
isFirst(index) {
return index == 1 ? true : false
}
isLatest(index) {
const latest = wx.getStorageSync('latest');
return index == latest ? true : false;
}
_getKey(index) {
return "classic" + index;
}
}
export {
ClassicModel
};
~~~
- 前期准备
- 软件安装配置
- 语法 以及 功能 的实现
- 小程序中的 轮播
- 翻转轮播
- 实现 跳转 页面
- 详谈 跳转页面
- for 循环 渲染 页面(重点)
- 点击 改变 元素内容
- 功能 封装(创建、使用 模板)(重点)
- js模块化(重点)
- if-else实现 三目运算
- 底部导航栏tabBar 实现
- 小程序中的 函数调用 方法
- 小程序中的 block 包裹元素
- 小程序中的 hover事件
- import 标签(重点)
- 其他
- 在本地模拟接口取数据
- 点击跳转 并将该元素的id一起传递给跳转的页面
- 点击详情页显示
- 点击事件(bindtap/catchtap)
- 图片的mode属性
- 跳转页面时实现顶部显示页面标题
- hello world
- 将豆瓣服务器接口设置在本地
- 组件
- 地图
- 下拉刷新
- 数据加载 loading...
- 动态设置导航(title设置)
- 实现js代码的模块化
- 传参
- 组件中的生命周期函数
- 实战
- 发送http请求
- 可用的豆瓣接口
- 处理豆瓣列表页的数据
- 从接口上取数据渲染到页面上1
- 从接口上取数据渲染页面实现瀑布流2
- 瀑布流
- 音乐播放
- 文章详情页
- 音乐播放组件
- 音乐播放 最终版
- 电影(封装取数据渲染)
- 分享与收藏
- 搜索框
- 将电影列表数据放缓存
- 零碎知识点
- 谈组件
- 请求封装 (重点)
- 实现简单需求的请求失败的封装
- 使用class实现显示各种错误信息
- 再次封装带class的请求实现改变里面给的url
- 使用promise 封装http
- promise
- generator
- 01.介绍
- 02. 基本
- 03. 实例
- 04.yield
- asyns
- 01. 介绍
- 02. 使用
- 03. 取豆瓣
- 子组件(模板文件)接收父组件传来的参数并改变其值
- 模块化
- 在模板中提取相同的部分behavior
- 字符串与数组之间的转换
- 子组件向父组件传参
- 谈 triggerEvent
- 整体展示
- 父组件向子组件传wxml (在两个组件比较相似的情况 定义卡 槽传 wxml)
- 传css (在父组件中定义子组件的样式)
- 使用wxs给wxml传js
- 点赞
- 小程序中的正则
- 组件中实现下拉刷新
- 用户授权
- 组件点击图片获取信息
- 说明
- 小程序上下滑动