8. 表单 Form

在 form 标签中添加 .pure-form 类,可生成单行表单(inline)

效果图:

代码:

<form class="pure-form">

<fieldset>

<legend>A compact inline form</legend>

<input type="email" placeholder="Email">

<input type="password" placeholder="Password">

<label for="remember">

<input id="remember" type="checkbox"> Remember me

</label>

<button type="submit" class="pure-button pure-button-primary">Sign in</button>

</fieldset>

</form>

在 form 标签中添加 .pure-form-stacked 类,可生成栈型表单

效果图:

代码:

<form class="pure-form pure-form-stacked">

<fieldset>

<legend>A Stacked Form</legend>

<label for="email">Email</label>

<input id="email" type="email" placeholder="Email">

<label for="password">Password</label>

<input id="password" type="password" placeholder="Password">

<label for="state">State</label>

<select id="state">

<option>AL</option>

<option>CA</option>

<option>IL</option>

</select>

<label for="remember" class="pure-checkbox">

<input id="remember" type="checkbox"> Remember me

</label>

<button type="submit" class="pure-button pure-button-primary">Sign in</button>

</fieldset>

</form>

在 form 标签中添加 .pure-form-aligned 类,可生成排型表单

效果图:

代码:

<form class="pure-form pure-form-aligned">

<fieldset>

<div class="pure-control-group">

<label for="name">Username</label>

<input id="name" type="text" placeholder="Username">

</div>

<div class="pure-control-group">

<label for="password">Password</label>

<input id="password" type="password" placeholder="Password">

</div>

<div class="pure-control-group">

<label for="email">Email Address</label>

<input id="email" type="email" placeholder="Email Address">

</div>

<div class="pure-control-group">

<label for="foo">Supercalifragilistic Label</label>

<input id="foo" type="text" placeholder="Enter something here...">

</div>

<div class="pure-controls">

<label for="cb" class="pure-checkbox">

<input id="cb" type="checkbox"> I've read the terms and conditions

</label>

<button type="submit" class="pure-button pure-button-primary">Submit</button>

</div>

</fieldset>

</form>

通过与响应式网格(responsive-grids)结合,可生成多列表单

效果图:

代码:

<form class="pure-form pure-form-stacked">

<fieldset>

<legend>Legend</legend>

<div class="pure-g">

<div class="pure-u-1 pure-u-md-1-3">

<label for="first-name">First Name</label>

<input id="first-name" type="text">

</div>

<div class="pure-u-1 pure-u-md-1-3">

<label for="last-name">Last Name</label>

<input id="last-name" type="text">

</div>

<div class="pure-u-1 pure-u-md-1-3">

<label for="email">E-Mail</label>

<input id="email" type="email" required>

</div>

<div class="pure-u-1 pure-u-md-1-3">

<label for="city">City</label>

<input id="city" type="text">

</div>

<div class="pure-u-1 pure-u-md-1-3">

<label for="state">State</label>

<select id="state" class="pure-input-1-2">

<option>AL</option>

<option>CA</option>

<option>IL</option>

</select>

</div>

</div>

<label for="terms" class="pure-checkbox">

<input id="terms" type="checkbox"> I've read the terms and conditions

</label>

<button type="submit" class="pure-button pure-button-primary">Submit</button>

</fieldset>

</form>

通过对 fieldset 增加 .pure-group 类, 可对元素分组

效果图:

代码:

<form class="pure-form">

<fieldsetclass="pure-group">

<input type="text" class="pure-input-1-2" placeholder="Username">

<input type="text" class="pure-input-1-2" placeholder="Password">

<input type="email" class="pure-input-1-2" placeholder="Email">

</fieldset>

<fieldset class="pure-group">

<input type="text" class="pure-input-1-2" placeholder="Another Group">

<input type="text" class="pure-input-1-2" placeholder="More Stuff">

</fieldset>

<button type="submit" class="pure-button pure-input-1-2 pure-button-primary">Sign in</button>

</form>

控制表单元素大小,可以通过增加 .pure-input-* 类实现,如 pure-input-2-3 代表宽度为 66.6%

为输入项增加 required 属性,使其具有必填提示

<input type="email" placeholder="Requires an email"required>

为输入项增加 disabled 属性,使其不可用

<input type="text" placeholder="Disabled input here..."disabled>

为输入项增加 readonly 属性,使其只读

<input type="text" value="Readonly input here..."readonly>

为输入项增加pure-input-rounded 属性,使其变圆角

<input type="text" class="pure-input-rounded">

复选框(checkbox)和单选框(radio),增加 .pure-checkbox 和 .pure-radio,保持其样式整齐

效果图:

代码:

<form class="pure-form">

<label for="option-one" class="pure-checkbox">

<input id="option-one" type="checkbox" value="">

Here's option one.

</label>

<label for="option-two" class="pure-radio">

<input id="option-two" type="radio" name="optionsRadios" value="option1" checked>

Here's a radio button. You can choose this one..

</label>

<label for="option-three" class="pure-radio">

<input id="option-three" type="radio" name="optionsRadios" value="option2">

..Or this one!

</label>

</form>

9. 按钮

在 a 或 button 标签中添加类 .pure-button

<aclass="pure-button" href="#">A Pure Button</a>

<buttonclass="pure-button">A Pure Button</button>

禁用的按钮 Disabled Button

<a class="pure-button pure-button-disabled" href="#">A Disabled Button</a>

<button class="pure-button pure-button-disabled">A Disabled Button</button>

激活的按钮 Active Button,同按下状态

<a class="pure-button pure-button-active" href="#">An Active Button</a>

<button class="pure-button pure-button-active">An Active Button</button>

高亮按钮 Primary Button

<a class="pure-button pure-button-primary" href="#">A Primary Button</a>

<button class="pure-button pure-button-primary">A Primary Button</button>

自定义按钮

<div>

<style scoped>

.button-success,

.button-error,

.button-warning,

.button-secondary {

color: white;

border-radius: 4px;

text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);

}

.button-success {

background: rgb(28, 184, 65); /* this is a green */

}

.button-error {

background: rgb(202, 60, 60); /* this is a maroon */

}

.button-warning {

background: rgb(223, 117, 20); /* this is an orange */

}

.button-secondary {

background: rgb(66, 184, 221); /* this is a light blue */

}

</style>

<button class="button-success pure-button">Success Button</button>

<button class="button-error pure-button">Error Button</button>

<button class="button-warning pure-button">Warning Button</button>

<button class="button-secondary pure-button">Secondary Button</button>

</div>

按钮大小

<div>

<style scoped>

.button-xsmall {

font-size: 70%;

}

.button-small {

font-size: 85%;

}

.button-large {

font-size: 110%;

}

.button-xlarge {

font-size: 125%;

}

</style>

<button class="button-xsmall pure-button">Extra Small Button</button>

<button class="button-small pure-button">Small Button</button>

<button class="pure-button">Regular Button</button>

<button class="button-large pure-button">Large Button</button>

<button class="button-xlarge pure-button">Extra Large Button</button>

</div>

图标按钮

要使用图标按钮,需添加 CSS 字体文件,比如 Font-Awesome

<button class="pure-button">

<i class="fa fa-cog"></i>

Settings

</button>

<a class="pure-button" href="#">

<i class="fa fa-shopping-cart fa-lg"></i>

Checkout

</a>

响应式布局框架 Pure-CSS 5.0 示例中文版-中的更多相关文章

  1. 响应式布局框架 Pure-CSS 5.0 示例中文版-上

    0. Pure-CSS 介绍 Pure CSS 是雅虎出品的 CSS 框架, 依托于Normalize.CSS,在不适用任何JS代码情况下即可实现响应式布局的轻量级框架,无依赖,体积小. 1. CDN ...

  2. 响应式布局框架 Pure-CSS 5.0 示例中文版-下

    10. 表格 Tables 在 table 标签增加 .pure-table 类 <table class="pure-table"> <thead> &l ...

  3. 2016国内最值得期待的响应式前端框架pintuer(拼图)--http://www.pintuer.com

    近期,需要将项目从pc端的应用扩展到移动端. 当然移动框架的第一选择必然是bootstrap,但是bootstrap作为移动端明显过于死板,而且作为国外的产品,对于国内的应用明显水土不服.框架里总有那 ...

  4. 响应式布局(Responsive layout,RL)的简单Demo

          ★背景:       响应式布局是Ethan Marcotte在2010年5月份提出的一个概念,简而言之,就是一个网站能够兼容多个终端--而不是为每个终端做一个特定的版本.这个概念是为解决 ...

  5. 一个菜鸟所喜欢用的响应式布局,操作方便简单、时尚简约,适合新手!(一个Dreamweaver cs6生成响应式布局)

    前端开发并不是一个容易的工作,不仅需要掌握HTML.CSS和JavaScript,针对不同的浏览器版本和平台,还需要了解如何设计出跨平台的网站.如今随着响应式设计的流行,前端开发变得越来越困难,且花费 ...

  6. 响应式布局 —— Demo

    响应式布局实例演示What is 响应式布局? 响应式布局是Ethan Marcotte在2010年5月份提出的一个概念,简而言之,就是一个网站能够兼容多个终端--而不是为每个终端做一个特定的版本.这 ...

  7. [html5] 学习笔记-响应式布局

    1.响应式布局介绍 响应式布局是2010年5月份提出的一个概念,简而言之,就是一个网站能够兼容多个终端——而不是每一个终端做一个特定的版本.这个概念是为了兼容移动互联网浏览而诞生的,其目的是为用户提供 ...

  8. html自己写响应式布局(说起来很高大上的样子,但是其实很简单)

    第一步,打开电脑中安装的Sublime Text3,新建demo文件夹用来存放文件,在里面新建一个HTML文件,通过Tab快捷键迅速创建一个HTML模板,并命名标题. 第二步,在Body标签里添加三个 ...

  9. asp.net MVC通用权限管理系统-响应式布局-源码

    一.Angel工作室简单通用权限系统简介 AngelRM(Asp.net MVC Web api)是基于asp.net(C#)MVC+前端bootstrap+ztree+lodash+jquery技术 ...

随机推荐

  1. JAVA 文本 TXT 操作工具类

    import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; imp ...

  2. 最大的Redis集群:新浪Redis集群揭秘

    前言 Tape is Dead,Disk is Tape,Flash is Disk,RAM Locality is King.       — Jim Gray Redis不是比较成熟的Memcac ...

  3. 有用的iOS网站地址

    王巍 (@onevcat) 是一名 iOS 和 Unity3D 开发者,现旅居日本,正在寻求创意之源.http://swifter.tips/http://onevcat.com/2013/02/xc ...

  4. 【iOS开发-90】CALayer图层:自己定义图层,图层的一些动画

    (1)效果 (2)代码 http://download.csdn.net/detail/wsb200514/8261547 (3)总结 --能够自己定义图层,尤其须要对图片进行圆角裁剪. --图层的动 ...

  5. MySQL索引优化案例

    这里我们分成三种情况进行分析,分别是单表,两表,三表 1.单表 CREATE TABLE IF NOT EXISTS `article`( `id` ) NOT NULL PRIMARY KEY AU ...

  6. 数学图形(2.13)Spherical trochoid曲线

    该曲线与上一节的herical cycloid球面外摆曲线 很相似,难道这是球面内摆曲线? #http://www.mathcurve.com/courbes3d/cycloidspheric/tro ...

  7. Power Desginer系列00【转载】

    绪论 Sybase PowerDesigner(简称PD)是最强大的数据库建模工具,市场占有率第一,功能也确实十分强大,现在最新版本是15.1,已经支持最新的SQL Server 2008等数据库,另 ...

  8. 在CMD下如何搜索某个名字的文件?

    命令如下: dir FileYouWantToFind.txt /a /s   效果如图:   偷看Kun总操作学来的 ^_^

  9. Sql Server 2005 镜像后收缩日志

    网站的一个数据库的日志文件已经到150个G的地步,数据文件才几十M,通过常规的操作去收缩日志: >数据库右键 → 任务 → 收缩 → 文件 , 在弹出的窗口中,文件类型选择"日志&qu ...

  10. JQuery 控制div滚动条保持最下

    $("#session_show").animate({ scrollTop: $("#session_show").scrollHeight },1000); ...