chrome 浏览器表单自动填充默认样式覆盖

chrome 浏览器表单自动填充默认样式覆盖

通过box-shadow覆盖底色

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
  -webkit-text-fill-color: #333;
}
input[type=text]:focus, input[type=password]:focus, textarea:focus {
  box-shadow: 0 0 0 1000px white inset;
}

使用动画

  1. 动画延迟

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition-delay: 99999s;
  transition: color 99999s ease-out, background-color 99999s ease-out;
}
  1. 通过无限循环动画
input:-webkit-autofill {
  animation: autofill-fix 1s infinite;
  -webkit-text-fill-color: #ccc;
}

@-webkit-keyframes autofill-fix {
  from {
    background-color: transparent
  }
  to {
    background-color: transparent
  }
}

3.通过 js 控制

<script type="text/javascript">
  if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) {
      Array.from(document.querySelectorAll('input:-webkit-autofill')).map(function(el){
        var text = el.getAttribute('value');
        var name = el.getAttribute('name');
        el.setAttribute('value', '');
        // el.setAttribute('value', text);
      });
  }
</script>

参考链接

  1. chrome 浏览器表单自动填充默认样式 - autofill
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值