-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
437 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
|
||
html { | ||
} | ||
|
||
body { | ||
width: 600px; | ||
margin: 0 auto; | ||
padding: 0 0 40px 0; | ||
background: #eee; | ||
font-family: Helvetica, Arial; | ||
} | ||
|
||
h1 { | ||
background-color: #FC7600; | ||
color: #fff; | ||
font-size: 1.6em; | ||
padding: 30px 20px 15px 20px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
#header { | ||
padding: 0 20px; | ||
} | ||
|
||
.body li { | ||
margin-bottom: 10px ; | ||
} | ||
|
||
.body p, | ||
#header p { | ||
color: #555; | ||
line-height: 160%; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.body p, | ||
#header small { | ||
font-size: 10pt; | ||
color: #777; | ||
display: block; | ||
line-height: 140%; | ||
} | ||
|
||
.body strong, | ||
#header strong { | ||
color: #000; | ||
font-weight: bold; | ||
} | ||
|
||
.body a, | ||
#header a { | ||
color: #444; | ||
} | ||
|
||
.body a:hover, | ||
#header a:hover { | ||
color: #000; | ||
} | ||
|
||
form legend { | ||
color: #333; | ||
padding: 0 0 20px 0; | ||
text-transform: uppercase; | ||
} | ||
|
||
form { | ||
padding: 0 20px 20px 20px; | ||
} | ||
|
||
form, form fieldset input, form fieldset textarea, form label { | ||
font-family: Helvetica, Arial; | ||
font-size: 12pt; | ||
} | ||
form .holder-cnt { position: relative; margin: 10px 0;} | ||
form .holder-cnt label { position: absolute; top: 0; left: 0; cursor: text;} | ||
form .holder-cnt br {display: none;} | ||
|
||
|
||
form fieldset p input, | ||
form fieldset p textarea { | ||
display: block; | ||
padding: 4px; | ||
width: 400px; | ||
margin: 0; | ||
} | ||
|
||
form fieldset p label { | ||
width: 380px; | ||
display: block; | ||
margin: 5px 5px 5px 6px; | ||
padding: 0; | ||
} | ||
|
||
form fieldset p textarea { | ||
padding: 2px; | ||
width: 404px; | ||
} | ||
|
||
form fieldset p textarea, | ||
form fieldset p input { | ||
border: solid 1px #ccc; | ||
} | ||
form fieldset p label { | ||
color: #777; | ||
} | ||
|
||
.body { | ||
padding: 0 20px; | ||
} | ||
|
||
h2 { | ||
color: #aaa; | ||
font-size: 2em; | ||
|
||
letter-spacing: -3px; | ||
font-weight: normal; | ||
} | ||
|
||
pre { | ||
font-size: 10pt; | ||
font-family: "Courier New"; | ||
background: #000; | ||
padding: 10px 5px; | ||
color: #fff; | ||
} | ||
|
||
tt { | ||
font-family: "Courier New"; | ||
font-weight: bold; | ||
color: #000; | ||
} | ||
|
||
.body ul { | ||
padding: 0 0 10px 20px; | ||
margin: 0 0 0 20px; | ||
list-style: disc; | ||
font-size: 0.8em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
<!DOCTYPE html> | ||
|
||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | ||
|
||
<title>In-Field Labels jQuery Plugin</title> | ||
<link rel="stylesheet" href="css/layout.css" type="text/css" media="all" charset="utf-8"/> | ||
|
||
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script> | ||
<script src="../src/jquery.infieldlabel.js" type="text/javascript" charset="utf-8"></script> | ||
|
||
<script type="text/javascript" charset="utf-8"> | ||
$(function () { | ||
$(".holder-lbl").inFieldLabels(); | ||
}); | ||
</script> | ||
<!--[if lte IE 6]> | ||
<style type="text/css" media="screen"> | ||
form label { | ||
background: #fff; | ||
} | ||
</style> | ||
<![endif]--> | ||
</head> | ||
|
||
<body> | ||
<div class="body"><h2>占位符模拟demo</h2></div> | ||
<form action="index.html" method="get" accept-charset="utf-8"> | ||
<fieldset> | ||
<legend>表单</legend> | ||
<p class="holder-cnt"> | ||
<label for="name" class="holder-lbl">请输入姓名</label><br/> | ||
<input type="text" name="name" value="" id="name" placeholder=""> | ||
</p> | ||
|
||
<p class="holder-cnt"> | ||
<label for="email" class="holder-lbl">电子邮件</label><br/> | ||
<input type="text" name="email" value="" id="email" placeholder=""> | ||
</p> | ||
|
||
<p class="holder-cnt"> | ||
<label for="website" class="holder-lbl">网站</label><br/> | ||
<input type="text" name="website" value="" id="website" placeholder=""> | ||
</p> | ||
|
||
<p class="holder-cnt"> | ||
<label for="comment" class="holder-lbl">评论</label><br/> | ||
<textarea cols="30" rows="10" name="comment" id="comment" placeholder=""></textarea> | ||
</p> | ||
</fieldset> | ||
<p><input type="submit" value="提交 →"></p> | ||
</form> | ||
|
||
<form action="index.html" method="get" accept-charset="utf-8"> | ||
<fieldset> | ||
<legend>表单</legend> | ||
<p class="holder-cnt"> | ||
<label for="username" class="holder-lbl">请输入用户名</label><br/> | ||
<input type="text" name="username" value="" id="username" placeholder=""> | ||
</p> | ||
|
||
<p class="holder-cnt"> | ||
<label for="password" class="holder-lbl">请输入密码</label><br/> | ||
<input type="password" name="password" value="" id="password" placeholder=""> | ||
</p> | ||
</fieldset> | ||
<p><input type="submit" value="提交 →"></p> | ||
</form> | ||
<div class="body"> | ||
<h2>用法介绍</h2> | ||
|
||
<p><strong>HTML结构</strong>: | ||
<pre> | ||
<p class='holder-cnt'> | ||
<label for="field_id">Label Text</label><br /> | ||
<input type="text" name="field_id" value="" | ||
id="field_id"> | ||
</p></pre> | ||
</p> | ||
<p><strong>CSS结构</strong>:<br/> | ||
如图所示, | ||
<pre> | ||
form .holder-cnt { position: relative; | ||
margin: 10px 0;} | ||
form .holder-cnt label { position: absolute; | ||
top: 0; left: 0; | ||
cursor: text;} | ||
</pre> | ||
</p> | ||
<p><strong>Javascript调用</strong>:<br/> | ||
<pre> | ||
$(document).ready(function(){ | ||
$(".holder-lbl").inFieldLabels(); | ||
});</pre> | ||
|
||
</p> | ||
<h2>可选项</h2> | ||
|
||
<p>传递参数有两种实现方式</p> | ||
|
||
<p>在调用插件时,设置$.inFieldLabels.defaultOptions.optionName | ||
<pre> | ||
$.inFieldLabels.defaultOptions.optionName = "";</pre> | ||
</p> | ||
<p>在调用时,当成参数传递 | ||
<pre> | ||
$("label").inFieldLabels({ optionName:value });</pre> | ||
</p> | ||
<p><tt>fadeOpacity:</tt> <strong>值的范围:0.1~1.0</strong><br/>当表单域获取焦点时,label中文本最终的透明度,默认值为 <tt>0.5</tt></p> | ||
|
||
<p><tt>fadeDuration:</tt> <strong>单位为毫秒数</strong><br/>动画的延迟时间,默认值 <tt>300</tt></p> | ||
|
||
<p><tt>pollDuration:</tt> <strong>毫秒数</strong><br/> | ||
如果设置的值大于0的话,代码会在指定的时间简称该label相对的表单域的值.</p> | ||
|
||
<p><tt>className:</tt> 在label上添加的类名,默认值为 <tt>false</tt></p> | ||
|
||
<p><tt>enabledInputTypes:</tt> <strong>被运行的类型的数组</strong><br/>限制input的输入类型. 默认值 <tt>[ "text", "search", "tel", "url", "email", | ||
"password", "textarea" ]</tt></p> | ||
|
||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.