微信小程序之特殊效果及功能

一.下拉刷新效果json

假设页面为index文件,那么代码以下:微信

index.json:ide

{
  "enablePullDownRefresh": true
}

index.js:微信支付

//下拉刷新
  onPullDownRefresh: function () {
    wx.showNavigationBarLoading() //在标题栏中显示加载

    //模拟加载
    setTimeout(function () {
      // complete
      wx.hideNavigationBarLoading() //完成中止加载
      wx.stopPullDownRefresh() //中止下拉刷新
    }, 1000);
  },

效果图附上:this

 

 

二.导航栏红色圈圈数字标记效果
spa

假设页面为red文件,那么代码以下:3d

red.js:code

onShow: function () {
    wx.setTabBarBadge({
      index: 3,//导航栏的索引值
      text: '3'//你所须要添加的数字
    })
}

效果图附上:orm

 

 

 

三.保存图片到相册效果xml

假设页面为picture文件,那么代码以下:

picture.js

wx.saveImageToPhotosAlbum({
      filePath: "http://.......",
      success: function(res) {
        wx.showToast({
          title: '图片保存成功',
          icon: 'success',
          duration: 2000 //持续的时间
        })
      },
      fail: function (err) {
        console.log(err)
        wx.showToast({
          title: '图片保存失败',
          icon: 'none',
          duration: 2000//持续的时间
        })
      }
    })

效果图以下:

 

 

 

四.粘贴板效果

假设页面为copy文件,那么代码以下:

copy.js:

//粘贴板操做
    wx.setClipboardData({
      data: "须要复制的内容",
      success: function(res) {
        wx.showToast({
          title: '地址已复制到粘贴板',
          icon: 'none',
          duration: 2000
        })
      }
    })

效果图以下:

 

 

 

五.拨打电话效果

假设页面为photo文件,那么代码以下:

photo.js:

//点击事件
playphoto: function() {
     wx.makePhoneCall({
          phoneNumber: '110' //仅为示例
     })
}

效果图没有:

 

 

 

六.扫码效果

假设页面为code文件,那么代码以下:

code.js:

// 容许从相机和相册扫码
wx.scanCode({
  success (res) {
    console.log(res)
  }
})

// 只容许从相机扫码
wx.scanCode({
  onlyFromCamera: true,
  success (res) {
    console.log(res)
  }
})

效果图如图微信扫码

 

七.微信支付密码六个框效果

假设页面为pay文件,那么代码以下:

pay.wxml:

<form bindsubmit="formSubmit">
                <view class='content'>             
                  <block wx:for="{{Length}}" wx:key="item">
                    <input class='iptbox' value="{{Value.length>=index+1?Value[index]:''}}" disabled password='{{ispassword}}' catchtap='Tap'></input>
                  </block>             
                </view>              
                <input name="password" password="{{true}}" class='ipt' maxlength="{{Length}}" focus="{{isFocus}}" bindinput="Focus"></input>            
                <view>
                  <button class="btn-area" formType="submit" bindtap='submit'>提交</button>
                </view>             
</form>

pay.js:

Focus(e) {
    var that = this;
    console.log("输入"+e.detail.value);
    var inputValue = e.detail.value;
    that.setData({
      Value: inputValue,
    })
  },
  Tap() {
    var that = this;
    that.setData({
      isFocus: true,
    })
  },
  formSubmit(e) {
    console.log("form表单" +e.detail.value.password);
  },

效果图以下:

 

 

八.总结

博主遇到的大体就只有这些了,其实还有不少,微信有不少须要咱们发掘的地方,下次博主再遇到一些特殊的,将会一一补充进来,但愿对你们有用,以为学到了的,麻烦点个关注或推荐,博主常常更新,欢迎常来逛逛!

相关文章
相关标签/搜索