基于Bootstrap实现Material Design风格表单插件 附源码

Jquery Material Form Plugin是一款基于Bootstrap的Material Design风格的jQuery表单插件。这篇文章主要介绍了基于Bootstrap的Material Design风格表单插件附源码下载,感兴趣的朋友参考下

Jquery Material Form Plugin是一款基于Bootstrap的Material Design风格的jQuery表单插件。该表单通过自定义样式和jQuery来将Bootstrap的表单修改为扁平风格的表单,并带有浮动标签特效。

基于Bootstrap实现Material Design风格表单插件 附源码

在线预览         源码下载

使用方法

使用该Material Design风格表单需要在页面中引入jquery,bootstrap相关文件和materialFormStyles.css、materialForm.js文件。

<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css"> <link href="https://www.jb51.net/css/materialFormStyles.css"> <script src="https://www.jb51.net/js/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.min.js"></script> <script src="https://www.jb51.net/js/materialForm.js"></script>

HTML结构

该Material Design风格表单的HTML结构是固定的,你可以复制下面的代码。

<div> <div> <form method="post" action="" role="form" autocomplete="off"> <div> <div> <label for="firstName">用户名称</label> <input type="text"> </div> <div> <label for="lastName">昵 称</label> <input type="text"> </div> </div> <div> <div> <label for="email">电子邮件</label> <input type="text"> </div> <div> <label for="phone">联系电话</label> <input type="tel"> </div> </div> <div> <div> <label for="description">项目描述</label> <input type="text"> </div> </div> <div> <div> <button type="button">提交</button> </div> </div> </form> </div> </div>

该表单插件的github地址为:https://github.com/ch0chi/Jquery-Material-Form-Plugin

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgywdy.html