实现一个自定义的小键盘 平果手机弹出系统输入法后 页面会被顶起来 一些需要点击的按钮因为位置不对 会失效 然后自己自己写了一个小键盘

<template>
  <div class="keyboard">
    <ul>
      <li
        v-for="(item, index) in list"
        :key="index"
        @touchstart="click(index)"
        :class="index === active ? 'active' : ''"
        @touchend="click2(index)"
      >
        <span>{{num(index)}}</span>
      </li>
    </ul>
  </div>
</template>
<script>
export default {
  data() {
    return {
      list: Array(12),
      active: ""
    };
  },
  methods: {
    num(index) {
      let num = index + 1;
      if (num === 10) num = "";
      if (num === 11) num = 0;
      if (num === 12) num = "←";
      return num;
    },
    click(index) {
      this.active = index;
      let type = "num";
      let num = index + 1;
      if (num === 10) return;
      if (num === 11) num = 0;
      if (num === 12) {
        num = "backspace";
        type = "del";
      }
      this.$emit("change", type, num);
    },
    click2(index) {
      index = 15;
      this.active = index;
    }
  }
};
</script>
<style lang="less" scoped>
.keyboard {
  width: 100%;
  ul {
    display: flex;
    flex-wrap: wrap;
    li {
      width: 33.333333333%;
      list-style: none;
      height: 50px;
      line-height: 50px;
      text-align: center;
      box-shadow: 0px 8px 57px 0px rgba(0, 0, 0, 0.04);
    }
    li.active {
      animation: activeanm 0.2s forwards;
    }

  }
  @keyframes activeanm {
    from {
      background: #34bdbe;
    }
    to {
      background: #fff;
    }
    20% {
    }
  }
}
</style>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值