sciactive/pform
Composer 安装命令:
composer require sciactive/pform
包简介
Pixel perfect CSS form layouts.
关键字:
README 文档
README
PForm is a pixel perfect CSS form layout library.
See http://sciactive.com/pform/ for examples.
Installation
You can install PForm with NPM, Composer or Bower.
npm install pform
composer require sciactive/pform
bower install https://github.com/sciactive/pform.git
Getting Started
PForm comes with the following files:
pform.css- The main stylesheet.pform-bootstrap.css- Use this if you also use Bootstrap.pform-ie-lt-8.css- Use this to support Internet Explorer 6 and 7.pform-ie-lt-6.css- Use this to support Internet Explorer 5.01 and 5.5.
So here's how you'd include them all:
<link href="pform.css" media="all" rel="stylesheet" type="text/css" /> <!-- Include this file if you are using Bootstrap. --> <link href="pform-bootstrap.css" media="all" rel="stylesheet" type="text/css" /> <!--[if lt IE 8]> <link href="pform-ie-lt-8.css" media="all" rel="stylesheet" type="text/css" /> <![endif]--> <!--[if lt IE 6]> <link href="pform-ie-lt-6.css" media="all" rel="stylesheet" type="text/css" /> <![endif]-->
Notice the conditional comments to serve older versions of IE the right files. If you have to support older versions of IE, PForm can do it.
Now you can use PForm like this:
<form class="pf-form" action="#" method="post"> <div class="pf-element pf-heading"> <h3>Login</h3> </div> <div class="pf-element"> <label><span class="pf-label">Username</span> <input class="pf-field" type="text" name="username" /></label> </div> <div class="pf-element"> <label><span class="pf-label">Password</span> <input class="pf-field" type="password" name="password" /></label> </div> <div class="pf-element"> <label><span class="pf-label">Remember Me</span> <span class="pf-note">Lasts for 2 weeks.</span> <input class="pf-field" type="checkbox" name="remember" /></label> </div> <div class="pf-element pf-buttons"> <input class="pf-button" type="submit" name="submit" value="Submit" /> <input class="pf-button" type="reset" name="reset" value="Reset" /> </div> </form>
Here's the same form, built with a fieldset:
<form class="pf-form" action="#" method="post"> <fieldset> <legend>Login</legend> <div class="pf-element"> <label><span class="pf-label">Username</span> <input class="pf-field" type="text" name="username" /></label> </div> <div class="pf-element"> <label><span class="pf-label">Password</span> <input class="pf-field" type="password" name="password" /></label> </div> <div class="pf-element"> <label><span class="pf-label">Remember Me</span> <span class="pf-note">Lasts for 2 weeks.</span> <input class="pf-field" type="checkbox" name="remember" /></label> </div> <div class="pf-element pf-buttons"> <input class="pf-button" type="submit" name="submit" value="Submit" /> <input class="pf-button" type="reset" name="reset" value="Reset" /> </div> </fieldset> </form>
Features
Layouts
PForm has two different layout options, Inline (default) and Block. To use block layout for an entire form, add the pf-layout-block class to the pf-form element. To use block layout for an individual element, add the pf-layout-block class to a pf-element element.
Headings
<div class="pf-element pf-heading"> <h3>Sign Up Now</h3> <p>You will receive 200 bonus points just for signing up!</p> </div>
Required Asterisk
<span class="pf-required">*</span>
You can also mark the element as completed (with JavaScript validation) by adding the pf-completed class, like so:
<span class="pf-required pf-completed">*</span>
The best place I've found to put these is right after a label's text, like this:
<span class="pf-label">Username <span class="pf-required">*</span></span>
You can put the pf-completed class on the pf-element element instead, to mark any required asterisks in that element as completed.
Field Groups
Sometimes you will need to group fields so they don't fall left below the label. You can do this by wrapping them in a pf-group element:
<div class="pf-element"> <span class="pf-label">Favorite Food</span> <div class="pf-group"> <label><input class="pf-field" type="radio" name="radiotest" /> Hot Dogs</label><br /> <label><input class="pf-field" type="radio" name="radiotest" /> Hamburgers</label><br /> <label><input class="pf-field" type="radio" name="radiotest" /> Cheeseburgers</label><br /> <label><input class="pf-field" type="radio" name="radiotest" /> Sushi</label><br /> <label><input class="pf-field" type="radio" name="radiotest" /> Pizza</label><br /> ... </div> </div>
Remember that you can use the pf-group class on a span instead. This lets you put a group inside a label element and have it validate.
Fieldset Groups
Fieldset groups must use the pf-group class:
<fieldset class="pf-group"> <legend>Household</legend> <div class="pf-element"> <label><span class="pf-label">Household Memebers</span> <span class="pf-note">Family members living in your house.</span> <input class="pf-field" type="text" name="household" /></label> </div> </fieldset>
Label Alignment
Labels can be aligned left (default) or right. To align them, use the pf-labels-left and pf-labels-right classes. You can put these classes on a pf-form element, pf-group fieldset, pf-element element, or pf-label element. You can override an ancestor's alignment class too.
Full Width Elements
Elements can be extended to the form's width using the pf-full-width class:
<div class="pf-element pf-full-width"> <label> <span class="pf-label">Comments</span> <span class="pf-group"> <span class="pf-field"><textarea style="width: 100%;" name="comments" rows="5" cols="30"></textarea></span> </span> </label> </div>
Verification Forms
You can apply a form like layout to verification pages by simply providing no inputs:
<form class="pf-form" action="#" method="post"> <fieldset> <legend>Verify this Information</legend> <div class="pf-element"> <span class="pf-label">Name</span> <span class="pf-field">Jake Sully</span> </div> <div class="pf-element"> <span class="pf-label">Location</span> <span class="pf-note">This will not be displayed to visitors.</span> <span class="pf-field">Pandora.</span> </div> <div class="pf-element"> <span class="pf-label">Species</span> <span class="pf-field">N/A</span> </div> <div class="pf-element pf-buttons"> <button class="pf-button" type="submit" name="submit">Correct</button> <button class="pf-button" type="button" name="changes">Make Changes</button> </div> </fieldset> </form>
sciactive/pform 适用场景与选型建议
sciactive/pform 是一款 基于 HTML 开发的 Composer 扩展包,目前已累计 23 次下载、GitHub Stars 达 20, 最近一次更新时间为 2014 年 12 月 21 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「css」 「html」 「form layout」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 sciactive/pform 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 sciactive/pform 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 sciactive/pform 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Texy converts plain text in easy to read Texy syntax into structurally valid (X)HTML. It supports adding of images, links, nested lists, tables and has full support for CSS. Texy supports hyphenation of long words (which reflects language rules), clickable emails and URL (emails are obfuscated again
A Twig extension to insert css as inline styles with a tag
Caching and compression for Twig assets (JavaScript and CSS).
Diese Contao 4 Erweiterung stellt Google reCAPTCHA V2 in Form eines neuen Formularfeldes im Formulargenerator bereit. This extension provides Google reCAPTCHA V2 in the form of a new form field in the form generator of Contao Open Source CMS.
HTML and form generation
A Laravel Filament Forms slug field.
统计信息
- 总下载量: 23
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 20
- 点击次数: 22
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2014-12-21