摘要: 微信小程序websocket实例 效果展示 wxml <button bindtap="webSocket">connect</button> <rich-text>{{html}}</rich-text> js 下面是js中除了生命周期函数之外的部分 var socketQueue = ["rea 阅读全文
posted @ 2021-01-27 11:54 五仁小奶牛 阅读(2315) 评论(1) 推荐(1) 编辑
摘要: 微信小程序api上传和下载内容 效果展示 第三个数据提交到这了 wxml <view class="download"> <button bindtap="download">下载</button> <button bindtap="requestDownload">下载传输</button> <b 阅读全文
posted @ 2021-01-26 17:45 五仁小奶牛 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 微信小程序canvas实例 效果展示 wxml <view class="paint"> <view class="paintCanvas"> <canvas canvas-id="paintArea" class="paintArea" bindtouchstart="touchStart" bi 阅读全文
posted @ 2021-01-25 16:03 五仁小奶牛 阅读(1068) 评论(0) 推荐(0) 编辑
摘要: 微信小程序camera实例 效果展示 拍照界面 wxml <camera mode="normal" device-position="front" flash="auto" class="camera"> <cover-view class="coverText">photo</cover-vie 阅读全文
posted @ 2021-01-21 21:52 五仁小奶牛 阅读(1815) 评论(0) 推荐(0) 编辑
摘要: 微信小程序表单的提交和表单控件的操作 效果展示 wxml <form bindsubmit="submitForm" bindreset="resetForm"> <input type="text" name="contant" placeholder="请输入提交内容"></input> <!- 阅读全文
posted @ 2021-01-20 21:20 五仁小奶牛 阅读(1861) 评论(0) 推荐(0) 编辑
摘要: 微信小程序rich-text、progress与video的实例 效果展示 wxml <!--字符串--> <rich-text nodes="{{string}}"></rich-text> <!--数组--> <rich-text nodes="{{array}}"></rich-text> < 阅读全文
posted @ 2021-01-19 17:34 五仁小奶牛 阅读(606) 评论(0) 推荐(0) 编辑
摘要: 微信小程序movable-area和cover-view的实例 效果展示 wxml <view> <button bindtap="play" wx:if="{{!isPlay}}">play</button> <button bindtap="pause" wx:if="{{isPlay}}">p 阅读全文
posted @ 2021-01-18 17:04 五仁小奶牛 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 微信小程序swiper和scroll-view的实例 效果展示 没错就是今曰头条 wxml <view > <view class="menu-scroll"> <!--滚动条全部着色要在上一层设置--> <scroll-view scroll-x > <view class="scroll-ite 阅读全文
posted @ 2021-01-16 10:59 五仁小奶牛 阅读(590) 评论(0) 推荐(0) 编辑
摘要: 微信小程序基础语法(2) 效果展示 wxml <!-- 定义模板 --> <template name="namelist"> <view class="border"> <view>name:{{name}}</view> <view>age:{{age}}</view> </view> </te 阅读全文
posted @ 2021-01-15 11:26 五仁小奶牛 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 微信小程序基础语法(1) 效果展示 大概有以下内容: wxml 下面是wxml代码 <!--pages/test/test.wxml--> <text>pages/test/test.wxml</text> <icon type="success_no_circle" size="120px" co 阅读全文
posted @ 2021-01-14 09:52 五仁小奶牛 阅读(229) 评论(0) 推荐(0) 编辑