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