html 添加浮动占位符标签以在焦点上联系表单7

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 添加浮动占位符标签以在焦点上联系表单7相关的知识,希望对你有一定的参考价值。

<script>
$('.wpcf7 input[type=email],.wpcf7 input[type=date], .wpcf7 input[type=number], .wpcf7 input[type=text],.wpcf7 input[type=tel]').each(function(e){
				var placeholder = $(this).attr('placeholder');
				$(this).wrap('<div class="inputwrapper"></div>').before('<span>'+placeholder+'</span>');
				$(this).on('focus',function(){
					var inputContent = $(this).val();
					if(inputContent == ''){
						$(this).prev().addClass('visible');
					}

				});
				$(this).on('blur',function(){
					var inputContent = $(this).val();
					if(inputContent == ''){
						$(this).prev().removeClass('visible');
					}
				});
			});
	</script>
	
	<style>
	  

.inputwrapper {
	font-weight: 300;
	position: relative;
	min-height: 60px;
	margin-bottom: 10px;
}
.inputwrapper input {
	font-family: inherit;
	width: 100%;
	height: 45px;
	line-height: 30px;
	font-size: 16px;
	border-radius: 6px;
	padding: 0 10px;
	position: absolute;
	border: 1px solid #ccc;
	bottom: 0;
	background: #f7f7f8;
}
.inputwrapper input::-webkit-input-placeholder {
	color: #999;
}
.inputwrapper input:focus {
	outline: none;
	background: #fff;
}
.inputwrapper span {
	position: absolute;
	top: 15px;
	font-size: 10px;
	font-weight: bold;
	color: $color-white;
	background: #37cc2c;
	text-transform: uppercase;
	opacity: 0;
	transition: 0.3s ease-in-out;
	padding:1px 10px;
}
.inputwrapper span.visible {
	top: 0;
	opacity: 1;
}



.inputtextareawrapper {
	font-weight: 300;
	position: relative;
	min-height: 115px;
	margin-bottom: 10px;
}
.inputtextareawrapper textarea {
	font-family: inherit;
	width: 100%;
	height: 100px!important;
	line-height: 30px;
	font-size: 16px;
	padding: 0 10px;
	position: absolute;
	bottom: 0;
	top:15px;
	background: #f7f7f8;
}
.inputtextareawrapper textarea::-webkit-input-placeholder {
	color: #999;
}
.inputtextareawrapper textarea:focus {
	outline: none;
	background: #fff;
}
.inputtextareawrapper span {
	position: absolute;
	top: 15px;
	font-size: 10px;
	font-weight: bold;
	color: $color-white;
	background: #37cc2c;
	text-transform: uppercase;
	opacity: 0;
	transition: 0.3s ease-in-out;
	padding:1px 10px;
}
.inputtextareawrapper span.visible {
	top: 0;
	opacity: 1;
}
	</style>
			

以上是关于html 添加浮动占位符标签以在焦点上联系表单7的主要内容,如果未能解决你的问题,请参考以下文章

如何解决 Firefox 的材料设计输入字段占位符屏幕阅读器问题?

php 添加占位符以联系表单7,pryley补丁:http://wordpress.org/support/topic/plugin-contact-form-7-placeholder-for-ht

css 在焦点上清除搜索表单输入占位符文本

当输入字段处于焦点时,占位符不会消失

如何在悬停/焦点上为输入占位符位置设置动画

将 HTML5 占位符属性添加到 Spring 3.0 表单输入元素