要实现的功能:
完全和单输入框一样的操作,甚至可以插入覆盖:
1,限制输入数字
2,正常输入
3,backspace删除
4,paste任意位置粘贴输入
5,光标选中一个数字,滚轮可以微调数字大小,限制0-9
6,123|456 自动覆盖光标后输入的字符,此时光标在3后,继续输入111,会得到123111,而不用手动删除456
7,封装成vue单文件组件,方便任意调用。
模板代码
<template> <div class="input-box"> <div class="input-content" @keydown="keydown" @keyup="keyup" @paste="paste" @mousewheel="mousewheel" @input="inputEvent"> <input max="9" min="0" maxlength="1" data-index="0" v-model.trim.number="input[0]" type="number" ref="firstinput"/> <input max="9" min="0" maxlength="1" data-index="1" v-model.trim.number="input[1]" type="number"/> <input max="9" min="0" maxlength="1" data-index="2" v-model.trim.number="input[2]" type="number"/> <input <input max="9" min="0" maxlength="1" data-index="4" v-model.trim.number="input[4]" type="number"/> <input max="9" min="0" maxlength="1" data-index="5" v-model.trim.number="input[5]" type="number"/> </div> </div> </template>
实现了键盘的keydown/keyup/paste/input和鼠标滚轮mousewheel事件
使用了6个输入框的方案来实现。
样式部分:使用了scss模式
<style scoped lang="scss"> .input-box { .input-content { width: 512px; height: 60px; display: flex; align-items: center; justify-content: space-between; input { color: inherit; font-family: inherit; border: 0; outline: 0; border-bottom: 1px solid #919191; height: 60px; width: 60px; font-size: 44px; text-align: center; } } input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { appearance: none; margin: 0; } } </style>
具体实现逻辑:主要实现以上几个键盘事件操作。
<script> export default { data() { return { // 存放粘贴进来的数字 pasteResult: [], }; }, props: ['code'], computed: { input() { // code 是父组件传进来的默认值,必须是6位长度的数组,这里就不再做容错判断处理 // 最后空数组是默认值 return this.code || this.pasteResult.length === 6 ? this.pasteResult : ['', '', '', '', '', ''] } }, methods: { // 解决一个输入框输入多个字符 inputEvent(e) { var index = e.target.dataset.index * 1; var el = e.target; this.$set(this.input, index, el.value.slice(0, 1)) }, keydown(e) { var index = e.target.dataset.index * 1; var el = e.target; if (e.key === 'Backspace') { if (this.input[index].length > 0) { this.$set(this.input, index, '') } else { if (el.previousElementSibling) { el.previousElementSibling.focus() this.$set(this.input, index - 1, '') } } } else if (e.key === 'Delete') { if (this.input[index].length > 0) { this.$set(this.input, index, '') } else { if (el.nextElementSibling) { this.$set(this.input, index = 1, '') } } if (el.nextElementSibling) { el.nextElementSibling.focus() } } else if (e.key === 'Home') { el.parentElement.children[0] && el.parentElement.children[0].focus() } else if (e.key === 'End') { el.parentElement.children[this.input.length - 1] && el.parentElement.children[this.input.length - 1].focus() } else if (e.key === 'ArrowLeft') { if (el.previousElementSibling) { el.previousElementSibling.focus() } } else if (e.key === 'ArrowRight') { if (el.nextElementSibling) { el.nextElementSibling.focus() } } else if (e.key === 'ArrowUp') { if (this.input[index] * 1 < 9) { this.$set(this.input, index, (this.input[index] * 1 + 1).toString()); } } else if (e.key === 'ArrowDown') { if (this.input[index] * 1 > 0) { this.$set(this.input, index, (this.input[index] * 1 - 1).toString()); } } }, keyup(e) { var index = e.target.dataset.index * 1; var el = e.target; if (/Digit|Numpad/i.test(e.code)) { this.$set(this.input, index, e.code.replace(/Digit|Numpad/i, '')); el.nextElementSibling && el.nextElementSibling.focus(); if (index === 5) { if (this.input.join('').length === 6) { document.activeElement.blur(); this.$emit('complete', this.input); } } } else { if (this.input[index] === '') { this.$set(this.input, index, ''); } } }, mousewheel(e) { var index = e.target.dataset.index; if (e.wheelDelta > 0) { if (this.input[index] * 1 < 9) { this.$set(this.input, index, (this.input[index] * 1 + 1).toString()); } } else if (e.wheelDelta < 0) { if (this.input[index] * 1 > 0) { this.$set(this.input, index, (this.input[index] * 1 - 1).toString()); } } else if (e.key === 'Enter') { if (this.input.join('').length === 6) { document.activeElement.blur(); this.$emit('complete', this.input); } } }, paste(e) { // 当进行粘贴时 e.clipboardData.items[0].getAsString(str => { if (str.toString().length === 6) { this.pasteResult = str.split(''); document.activeElement.blur(); this.$emit('complete', this.input); } }) } }, mounted() { // 等待dom渲染完成,在执行focus,否则无法获取到焦点 this.$nextTick(() => { this.$refs.firstinput.focus() }) }, } </script>
如果你发现了bug,或者有优化空间,欢迎你的指正和建议。我会随时更新到原代码当中,分享给大家。
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新动态
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]