game-camera
v0.0.4
Published
``` npm install game-camera ```
Downloads
1
Readme
game-camera
游戏
安装
npm install game-camera
使用
- json
{
"usingComponents": {
"game-camera": "game-camera/game-picture"
}
}
- mini.project.json
{
"node_modules_es6_whitelist": [
"game-camera"
]
}
- js
Page({
data: {
camerData: {
mode: "",
devicePosition: "front",
quality: "high",//high:高质量 normal:普通质量 low:低质量
flash: "",//闪光灯模式 auto/off/on
frameSize: ""
},
},
onCameraRef(ref) {
this.cameraRef = ref;
},
onCameraSuccess(url) {
my.alert({ content: url })
},
takePhoto(){
this.cameraRef.takePhoto();
}
})
- xaml
<game-picture componentData="{{camerData}}" onRef="onCameraRef" onSuccess="onCameraSuccess" />