Toggle navigation
菜菜小站
菜菜小站
前端开发
前端开发
前端基础
bootstrap
JavaScript
后端开发
后端开发
php开发
laravel
数据库
编辑器
git
服务器
服务器
https
cos云存储
ubuntu
homestead
微信开发
微信开发
微信小程序
python开发
python开发
python基础
关于
微信小程序开发(五)
作者:
菜菜子
|
时间:2016-12-21 16:22:00 |
分类:
微信小程序
,
微信开发
|
访问: 1,175 次|
评论:
0 评论
#flex布局 ##wxml页面代码: ```html
a
b
c
``` ##wxss页面代码: ```css .flex-wrap{ /*父级设置为弹性盒模型,使得该容器内的view为横排显示*/ display: -webkit-flex; /*下面的代码使得下面的view为纵向排列*/ /*横排显示值为row*/ /*flex-direction: column;*/ /*取消上面的注释后,下面的子级view会撑满1000rpx*/ /*height: 1000rpx;*/ } .flex-wrap view{ /*height: 200rpx; */ line-height: 200rpx; text-align: center; /*width: 200rpx;*/ } /*下面abc中的flex相加为将屏幕横向分为四份 *后面的数值是所占的四分之几的比例*/ .a{ background: red; /*横向占1/4*/ flex: 1 } .b{ background: yellow; /*横向占1/4*/ flex: 1 } .c{ background: green; /*横向占2/4*/ flex: 2 } ``` ##效果如下
#scroll-view标签的用法 ##wxml页面: ```html
``` ##wxss页面代码: ```css .scoll-wrap{ height: 400rpx; width: 400rpx; border: 1px solid red; } .scoll-wrap view{ height: 300rpx; width: 500rpx; } /*下面abc中的flex相加为将屏幕横向分为四份 *后面的数值是所占的四分之几的比例*/ .d{ background: red; } .e{ background: yellow; } .f{ background: green; } ``` ##效果如下
#swiper轮播图组件 ##wxml页面代码: ```html
``` ##js页面代码: ```javascript Page({ data: { imgUrls: [ 'http://img02.tooopen.com/images/20150928/tooopen_sy_143912755726.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175866434296.jpg', 'http://img06.tooopen.com/images/20160818/tooopen_sy_175833047715.jpg' ]}, tolower:function(){ console.log("到底端了!"); }, toupper:function(){ console.log("到顶端了!"); }, swiperchange:function(e){ console.log(e); } }) ``` ##效果如下:
#图标组件 ##wxml页面代码: ```html
第一组组件,以大小排序
第二组组件,以图标类型排序
第三组组件,以图标颜色排序
``` ##js页面代码: ```javascript Page({ data: { iconSize: [20, 30, 40, 50, 60, 70], iconColor: [ 'red', 'orange', 'yellow', 'green', 'rgb(0,255,255)', 'blue', 'purple' ], iconType: [ 'success', 'info', 'warn', 'waiting', 'safe_success', 'safe_warn', 'success_circle', 'success_no_circle', 'waiting_circle', 'circle', 'download', 'info_circle', 'cancel', 'search', 'clear' ] } }) ``` ##预览效果:
#进度条 ##wxml页面代码: ```html
``` ##js页面代码: ```javascript //进度条加载显示 /**有一个bugbug * 只有当progressprogressNum的值接近92的时候才会执行 * 加载,当没有超过的时候会不停的来回0、1切换*/ //初始化进度条进度 var progressNum=0; Page({ data: { /*进度条变量*/ progress:0 }, onLoad:function(){ var that=this; //添加定时器,每30毫秒progressNum变量自增1 var timer=setInterval( function(){ progressNum++; /*因为在内部取不到this的值,所以应用外部的that指向this*/ console.log("progressNum"); that.setData({ /*每次都将progress的值重新赋值一次*/ progress:progressNum }) //当变量值大于100时,定时器清理 if(progressNum>=100){ clearInterval(timer); } },30); } } ```
标签:
微信小程序
还不快抢沙发
添加新评论
昵称(必填)
邮箱(必填)
网站(选填)
内容(必填)
提交评论
最新文章
ubuntu自动化安装php文件
laravel 操作redis
laravel-admin静态资源加速
laravel-admin1.6版本表单tag bug修复方法
laravel根据另外一列的值赋予grid某一列editable()
laravel-admin数据来源非数据表信息
laravel判定多对多关系是否存在
最新回复
rcbojapcrb: 真棒!
ytwwjjjjoc: 真棒!
森木志: 对的 用的就是这个版本 我看plugin.php的...
菜菜子: 插件版本呢?应该用https://github.com...
森木志: 忘记说了,typecho版本是1.2.1,php版本是...
森木志: 遇到灵异事件了,设置是没问题的,按道理来说上传成功后的...
局外人: 下载失败了,大佬帮忙看看是什么原因呢?
青丝: 7355763
菜菜子: 我好像沒有做這個提示,方便加微信吧,我看看什麼問題
青丝: 对的,提示需要8.0PHP
标签
前端框架
bootstrap
laravel5
laravel-admin
laravel
微信小程序
gd库
git
wamp配置
https
表单
cos小工具
微信支付
ajax
cos
cos插件
vue
nginx
homestead
linux
ubuntu
swoole
typecho
编辑器
破解
数组
jwt
sql语言
腾讯云
邮件发送
websocket
队列
微信公众号
分页
日志
elasticsearch
wnmp
vagrant
无限极分类
分销
集合
supervisor
部署
grid
redis
python
标签
刷新
加密处理
验证码
悬浮框
权限控制
markdown
shell
mysql
测试
ui
任务调度
定时任务
deployer
gogs
反向代理
ftp
归档
2019年01月
2018年12月
2018年11月
2018年10月
2018年09月
2018年08月
2018年07月
2018年06月
2018年05月
2018年04月
2018年03月
2017年09月
2017年06月
2017年05月
2017年04月
2017年03月
2017年02月
2017年01月
2016年12月
2016年11月
友情链接
空
//