小程序模板網(wǎng)

微信小程序例子——添加手機聯(lián)系人、調(diào)節(jié)手機屏幕亮度

發(fā)布時間:2018-04-20 10:53 所屬欄目:小程序開發(fā)教程

微信小程序例子——添加手機聯(lián)系人、調(diào)節(jié)手機屏幕亮度

 
 
 

1、界面展示【使用滑動選擇器控制手機屏幕亮度】

 

2、關鍵代碼

1)、WXML代碼

 


 1

 來自CODE的代碼片
snippet_file_0.txt

 

2)、JS代碼

 


 1
 2
 3
 4
 5
 6
 7

Page({
changeScreenLight:function(e){
wx.setScreenBrightness({
value: parseFloat(e.detail.value).toFixed(1)
})
}
})
 來自CODE的代碼片
snippet_file_0.js
 
3、源代碼獲取方式
百度云鏈接:http://pan.baidu.com/s/1dFiVT1R
 
 

1、調(diào)節(jié)手機屏幕亮度效果展示:

      

2、關鍵代碼

1)WXML文件

 


 1

<view bindlongtap="phoneNumTap">{{phoneNum}}</view>
 來自CODE的代碼片
snippet_file_0.txt

 

2)JS文件

 


  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27

Page({
data:{
phoneNum:'12345678901'//測試用的號碼,并非真實號碼
},
// 長按號碼響應函數(shù)
phoneNumTap:function(){
var that=this;
// 提示呼叫號碼還是將號碼添加到手機通訊錄
wx.showActionSheet({
itemList: ['呼叫','添加聯(lián)系人'],
success:function(res){
if(res.tapIndex===0){
// 呼叫號碼
wx.makePhoneCall({
phoneNumber: that.data.phoneNum,
})
}else if(res.tapIndex==1){
// 添加到手機通訊錄
wx.addPhoneContact({
firstName: 'test',//聯(lián)系人姓名
mobilePhoneNumber: that.data.phoneNum,//聯(lián)系人手機號
})
}
}
})
}
})
 來自CODE的代碼片
snippet_file_0.js

 

3)WXSS文件

 


 1
 2
 3
 4
 5

view{
color: blue;
padding: 15px;
border-bottom: 1px solid gainsboro;
}
 來自CODE的代碼片
snippet_file_0.txt

 

 

3、源碼獲取方式

百度云鏈接:http://pan.baidu.com/s/1gfzMJXT



易優(yōu)小程序(企業(yè)版)+靈活api+前后代碼開源 碼云倉庫:starfork
本文地址:http://22321a.com/wxmini/doc/course/23768.html 復制鏈接 如需定制請聯(lián)系易優(yōu)客服咨詢:800182392 點擊咨詢
QQ在線咨詢