作者:壹滒_918 | 来源:互联网 | 2023-09-13 15:12
作者:jeffer来自:原文地点重要经由过程input输入事宜合营css的transform动态转变完成这类结果。现实调试过程当中,input组件bindinput事宜触发后回调的
作者:jeffer
来自:原文地点
重要经由过程input输入事宜合营css的transform动态转变完成这类结果。
现实调试过程当中,input组件bindinput事宜触发后回调的detail对象,在模仿器中含有cursor属性,在真机中(测过安卓,ios没测过)却没有该属性,末了挑选detail对象中的value属性的值的长度来同步输入的位数。
bindfocus事宜最好不要增加转变css的代码 。
预览图片:
JS:
//index.js
//猎取运用实例
var app = getApp()
Page({
data: {
v_username_border:'', //用户输入框底部border款式
v_pwd_border:'', // 暗码输入框底部border款式
v_float_username:'', // 浮动文字字transform 款式
v_float_pwd:'',
num_current_un:0, // 当前输入的文本位数
sp_num_current_un:'', // 当前输入文本位数凌驾限定时的款式
isPwdError:false // 提交时 暗码输入错误时的文本提醒
},
onLoad: function () {
console.log('onLoad')
},
// 用户名输入框猎取核心时事宜回调
usernameFocus:function(e){
var that = this;
console.log(e.detail)
},
// 用户名输入框输入时事宜回调
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)',
})
}
},
// // 用户名输入框落空核心时回调
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
})
}
})
源码地点https://github.com/jeffer0323…