用户调整字体大小页面布局出错,怎么阻止用户调整
//以下代码可使Android机页面不再受用户字体缩放强制改变大小,但是会有1S左右延时,期间可以考虑loading来处理 |
WeixinJSBridge.call(‘closeWindow’) // 关闭窗口
小程序
本地存储
var logs = wx.getStorageSync('logs') || [] |
获取地理位置wx.getLocation({
type: 'wgs84',
success: (res) => {
var latitude = res.latitude // 经度
var longitude = res.longitude // 纬度
}
})
扫一扫wx.scanCode({
success: (res) => {
console.log(res)
}
})
跳转页面wx.navigateTo({
url: '../logs/logs'
})
转发配置onShareAppMessage: function (e) {
return {
title: '51表情制作器',
path: 'pages/index/index'
}
}
获取基础库版本号wx.getSystemInfo({ success: (res) => {} })
wx.getSystemInfoSync()
开启蓝牙适配器wx.openBluetoothAdapter()
弹框提示wx.showModal({
title: '提示',
content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。'
})
提示组件function showLoading(message) {
if (wx.showLoading) {
// 基础库 1.1.0 微信6.5.6版本开始支持,低版本需做兼容处理
wx.showLoading({
title: message,
mask: true
})
} else {
// 低版本采用Toast兼容处理并将时间设为20秒以免自动消失
wx.showToast({
title: message,
icon: 'loading',
mask: true,
duration: 20000
});
}
}
function hideLoading() {
if (wx.hideLoading) {
// 基础库 1.1.0 微信6.5.6版本开始支持,低版本需做兼容处理
wx.hideLoading();
} else {
wx.hideToast();
}
}
lightApp
##
class
// 样式切换 |
生命周期
onCreate
onInit 类似 created
onReady 类似 mounted
https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/page.html
https://www.jianshu.com/p/0d97e4118353
audio
https://www.w3cschool.cn/quickapp/quickapp-yo7u2s12.html
page params
https://www.jianshu.com/p/ccdcf77a81a5
private
if="{{!playState}}" |
自定义组件
<import src="./part1"></import> |
https://www.jianshu.com/p/94fc14897c9f
diff
px 单位也支持百分比
background 不能连写
image 最大包大1MB
text and text 显示文本
show 只能用布尔值
input 没有失焦事件
iconfont
// 变量图标转码 |
background
background: linear-gradient(#3d3d3d, #1b1b1b); |