override css for html5 form validation/required popup

hrysbysz  于 2023-06-25  发布在  HTML5
关注(0)|答案(6)|浏览(213)

如何覆盖HTML5表单上必填字段的默认弹出窗口?
示例:http://jsfiddle.net/uKZGp/(确保单击提交按钮以查看弹出窗口)
HTML

<form>
<input type="text" name="name" id="name" placeholder="Name*" required="required" />
<input type="submit" />
</form>

注意:您必须使用HTML5浏览器,如Google Chrome或FireFox。
这个链接并不能解决我的问题,但它可能会让人跳出框框思考:

lstz6jyr

lstz6jyr1#

只使用HTML/CSS是不可能改变验证样式的。
它是浏览器的一部分。我发现唯一需要更改的属性是错误消息,使用以下示例:

document.getElementById("name").setCustomValidity("Lorum Ipsum");

但是,如该示例所示:http://jsfiddle.net/trixta/qTV3g/,您可以使用jQuery覆盖面板样式。这不是一个插件,它是一个核心功能,使用一个名为Webshims的DOM库,当然,还有一些CSS来设计弹出窗口。
我在这个名为Improve form validation error panel UIbug post中发现了一个非常有用的例子。
我认为这是你能找到的最好的解决方案,也是覆盖基本(丑陋)错误面板的唯一方法。

ct2axkht

ct2axkht2#

我不知道为什么,但::-webkit-validation-bubble-message { display: none; }对我不起作用。我能够通过阻止无效事件的默认行为获得所需的结果(在FF 19,Chrome版本29.0.1547.76 m中测试),该事件不会冒泡。

document.addEventListener('invalid', (function(){
      return function(e){
          //prevent the browser from showing default error bubble/ hint
          e.preventDefault();
          // optionally fire off some custom validation handler
          // myvalidationfunction();
      };
  })(), true);
qfe3c7zg

qfe3c7zg3#

对于webkit,您可以使用::-webkit-validation-bubble-message。例如,隐藏它:

::-webkit-validation-bubble-message { display: none; }

还有:

::-webkit-validation-bubble-arrow-clipper{}
::-webkit-validation-bubble-arrow{}
::-webkit-validation-bubble{}
::-webkit-validation-bubble-top-outer-arrow{}
::-webkit-validation-bubble-top-inner-arrow{}
::-webkit-validation-bubble-message{}

**更新:**Chrome不再允许样式化表单验证气泡:https://code.google.com/p/chromium/issues/detail?id=259050

对于firefox,你可以尝试:-moz-placeholder {}

omjgkv6w

omjgkv6w4#

当前默认的电子邮件验证是目前我见过的谷歌设计中最丑的东西之一!

然而,它似乎包含在一个标准的div中,所以你可以对它进行一些更改,如果你记得然后重置这些值。
我发现你可以改变背景,字体大小和颜色,边框和阴影,像这样

div {
    background: rgba(0,0,0,0.8);
    color: #333;
    font-size: 11px;
    border: 0;
    box-shadow: none;
}

如果您随后在html标记内覆盖这些div,那么最终只会影响验证。

html div {
    background: rgba(0,0,0,1);
    color: #000;
    font-size: 12px;
}

不幸的是,您想要更改的一些关键属性,例如marginfont-weight,无法更改。
注意:此技术目前仅适用于Chrome(12),即不适用于Firefox 4、Opera 11或Safari(Win 7)。

2admgd59

2admgd595#

向输入类型追加了一个类。并在那里显示消息。希望在少量定制后有所帮助。工作代码:

document.querySelector('#frm').addEventListener('submit', e => {
  e.preventDefault();
  e.currentTarget.classList.add('submitted');
});
body {
  font-family: Helvetica, sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: #ffa500;
}
form > div {
  position: relative;
  margin-bottom: 10px;
}
.theTooltip {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: opacity, visibility;
  max-width: 250px;
  border-radius: 5px;
  background-color: rgba(0,0,0,0.7);
  padding: 15px;
  color: #fff;
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: translate(15%, -50%);
          transform: translate(15%, -50%);
  top: 50%;
  left: auto;
  right: auto;
  bottom: auto;
  visibility: hidden;
  margin: 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  z-index: 100;
}
.theTooltip:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  margin-top: -10px;
  left: -10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid rgba(0,0,0,0.7);
}
label {
  display: inline-block;
  vertical-align: center;
}
input {
  background: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  overflow: visible;
  margin: 0;
  outline: 0;
  vertical-align: center;
  text-decoration: none;
  width: auto;
  border-radius: 3px;
  cursor: text;
  padding: 7px;
}
input:focus,
input:active {
  outline: none;
}
.submitted input:invalid {
  border: 1px solid #f00;
}
.submitted input:invalid ~ .theTooltip {
  visibility: visible;
  opacity: 1;
}
.submitted input:valid ~ .theTooltip {
  -webkit-transition: opacity 0.3s, visibility 0s 0.3s;
  transition: opacity 0.3s, visibility 0s 0.3s;
}
<form id="frm" action="action">
  <div>
    <label>Email</label>
    <input type="email" required="required"/><span class="theTooltip">Invalid email</span>
  </div>
  <div>
    <button formnovalidate="formnovalidate">OK</button>
  </div>
</form>
9avjhtql

9avjhtql6#

我知道这是一个相当老的问题,但我已经找到了这个库,我认为这可能是有益的其他发现这一点。
http://afarkas.github.io/webshim/demos/index.html

相关问题