溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

微信小程序中MaterialDesign--input組件怎么用

發(fā)布時(shí)間:2021-07-02 14:56:33 來(lái)源:億速云 閱讀:174 作者:小新 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)微信小程序中MaterialDesign--input組件怎么用,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

主要通過(guò)input輸入事件配合css的transform動(dòng)態(tài)改變實(shí)現(xiàn)這種效果。

實(shí)際調(diào)試過(guò)程中,input組件bindinput事件觸發(fā)后回調(diào)的detail對(duì)象,在模擬器中含有cursor屬性,在真機(jī)中(測(cè)過(guò)安卓,ios沒(méi)測(cè)過(guò))卻沒(méi)有該屬性,最后選擇detail對(duì)象中的value屬性的值的長(zhǎng)度來(lái)同步輸入的位數(shù)。

bindfocus事件最好不要添加改變css的代碼 。

預(yù)覽圖片:

微信小程序中MaterialDesign--input組件怎么用

微信小程序中MaterialDesign--input組件怎么用

JS:

//index.js
//獲取應(yīng)用實(shí)例
var app = getApp()
Page({
 data: {
  v_username_border:'', //用戶輸入框底部border樣式
  v_pwd_border:'', // 密碼輸入框底部border樣式
  v_float_username:'', // 浮動(dòng)文字字transform 樣式
  v_float_pwd:'',
  num_current_un:0, // 當(dāng)前輸入的文本位數(shù)
  sp_num_current_un:'', // 當(dāng)前輸入文本位數(shù)超過(guò)限制時(shí)的樣式
  isPwdError:false // 提交時(shí) 密碼輸入錯(cuò)誤時(shí)的文本提示
 },
 onLoad: function () {
  console.log('onLoad')
 },
 // 用戶名輸入框獲取焦點(diǎn)時(shí)事件回調(diào)
 usernameFocus:function(e){
  var that = this;
  console.log(e.detail)
 },
 // 用戶名輸入框輸入時(shí)事件回調(diào)
 usernameInput:function(e){
  console.log(e.detail)
   this.setData({
   v_username_border:'border-bottom:1px solid red',
   num_current_un:e.detail.value.length
  })
  if(e.detail.value.length!=0){
    this.setData({
    v_float_username:'color:red ;transform: translateY(-18.5px)',
    sp_num_current_un:'color:lightseagreen;'
   })
   if(e.detail.value.length>20){
    this.setData({
     sp_num_current_un:'color:orangered;'
    })
   }
  }else{
   this.setData({
    v_float_username:'transform: translateY(0px)',
   })
  }
 },
 // // 用戶名輸入框失去焦點(diǎn)時(shí)回調(diào)
 usernameBlur:function(e){
  console.log("onBlur")
   this.setData({
   v_username_border:'border-bottom:1px solid grey'
  })
 },
 pwdFocus:function(e){
  console.log('onFocus')
 },
 pwdInput:function(e){
  this.setData({
   v_pwd_border:'border-bottom:1px solid red',
   isPwdError:false
  })
  console.log(e.detail)
  if(e.detail.value.length!=0){
   this.setData({
    v_float_pwd:'color:red ; transform: translateY(-18.5px)',
   })
  }else{
   this.setData({
    v_float_pwd:'transform: translateY(0px)',
   })
  }
 },
  pwdBlur:function(e){
  console.log("onBlur")
   this.setData({
   v_pwd_border:'border-bottom:1px solid grey; '
  })
 },
// 登錄按鈕模擬表單提交 可用form組件代替
 onLogin:function(e){
  this.setData({
   isPwdError:true
  })
 }
})

關(guān)于“微信小程序中MaterialDesign--input組件怎么用”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI