Ladda 应用提交表单的时候显示loading载入中 包含不同位置,不同效果

不同大小。位置,效果,进度条等

XML/HTML Code
  1. <article class="examples" style="margin-top:0px;">
  2. <section class="button-demo">
  3. <h3>expand-left</h3>
  4. <button class="ladda-button" data-color="green" data-style="expand-left">Submit</button>
  5. </section>
  6. <section class="button-demo">
  7. <h3>expand-right</h3>
  8. <button class="ladda-button" data-color="green" data-style="expand-right">Submit</button>
  9. </section>
  10. <section class="button-demo">
  11. <h3>expand-up</h3>
  12. <button class="ladda-button" data-color="green" data-style="expand-up">Submit</button>
  13. </section>
  14. <section class="button-demo">
  15. <h3>expand-down</h3>
  16. <button class="ladda-button" data-color="green" data-style="expand-down">Submit</button>
  17. </section>
  18. <section class="button-demo">
  19. <h3>contract</h3>
  20. <button class="ladda-button" data-color="red" data-style="contract">Submit</button>
  21. </section>
  22. <section class="button-demo">
  23. <h3>contract-overlay</h3>
  24. <button class="ladda-button" data-color="red" data-style="contract-overlay" style="z-index: 10;">Submit</button>
  25. </section>
  26. <section class="button-demo">
  27. <h3>zoom-in</h3>
  28. <button class="ladda-button" data-color="red" data-style="zoom-in">Submit</button>
  29. </section>
  30. <section class="button-demo">
  31. <h3>zoom-out</h3>
  32. <button class="ladda-button" data-color="red" data-style="zoom-out">Submit</button>
  33. </section>
  34. <section class="button-demo">
  35. <h3>slide-left</h3>
  36. <button class="ladda-button" data-color="blue" data-style="slide-left">Submit</button>
  37. </section>
  38. <section class="button-demo">
  39. <h3>slide-right</h3>
  40. <button class="ladda-button" data-color="blue" data-style="slide-right">Submit</button>
  41. </section>
  42. <section class="button-demo">
  43. <h3>slide-up</h3>
  44. <button class="ladda-button" data-color="blue" data-style="slide-up">Submit</button>
  45. </section>
  46. <section class="button-demo">
  47. <h3>slide-down</h3>
  48. <button class="ladda-button" data-color="blue" data-style="slide-down">Submit</button>
  49. </section>
  50. <h3 id="progress">Built-in progress bar</h3>
  51. <section class="progress-demo">
  52. <h3>expand-right</h3>
  53. <button class="ladda-button" data-color="purple" data-style="expand-right">Submit</button>
  54. </section>
  55. <section class="progress-demo">
  56. <h3>contract</h3>
  57. <button class="ladda-button" data-color="purple" data-style="contract">Submit</button>
  58. </section>
  59. <h3 id="sizes">Sizes</h3>
  60. <section class="progress-demo">
  61. <h3>Extra Small</h3>
  62. <button class="ladda-button" data-color="mint" data-style="expand-right" data-size="xs">Submit</button>
  63. </section>
  64. <section class="progress-demo">
  65. <h3>Small</h3>
  66. <button class="ladda-button" data-color="mint" data-style="expand-right" data-size="s">Submit</button>
  67. </section>
  68. <section class="progress-demo">
  69. <h3>Large</h3>
  70. <button class="ladda-button" data-color="mint" data-style="expand-right" data-size="l">Submit</button>
  71. </section>
  72. <section class="progress-demo">
  73. <h3>Extra Large</h3>
  74. <button class="ladda-button" data-color="mint" data-style="expand-right" data-size="xl">Submit</button>
  75. </section>
  76. </article>
  77. <script src="dist/spin.min.js"></script>
  78. <script src="dist/ladda.min.js"></script>
  79. <script>
  80. // Bind normal buttons
  81. Ladda.bind( '.button-demo button', { timeout: 2000 } );
  82. // Bind progress buttons and simulate loading progress
  83. Ladda.bind( '.progress-demo button', {
  84. callback: function( instance ) {
  85. var progress = 0;
  86. var interval = setInterval( function() {
  87. progress = Math.min( progress + Math.random() * 0.1, 1 );
  88. instance.setProgress( progress );
  89. if( progress === 1 ) {
  90. instance.stop();
  91. clearInterval( interval );
  92. }
  93. }, 200 );
  94. }
  95. } );
  96. // You can control loading explicitly using the JavaScript API
  97. // as outlined below:
  98. // var l = Ladda.create( document.querySelector( 'button' ) );
  99. // l.start();
  100. // l.stop();
  101. // l.toggle();
  102. // l.isLoading();
  103. // l.setProgress( 0-1 );
  104. </script>

原文地址:http://www.freejs.net/article_biaodan_151.html

Ladda 应用提交表单的时候显示loading载入中 包含不同位置,不同效果的更多相关文章

  1. submit()提交表单时,显示警示框

    我同事在实现submit()提交表单时,想要页面弹出警示框. 但是折腾了几小时后发现,submit()始终不执行. 她的代码如下: $(document).ready(function(){ $(&q ...

  2. 提交表单时的等待(loading)效果

    $(document).ready(function () { $("body").prepend('<div id="overlay" class=&q ...

  3. PHP自学2——将用户提交表单存储到外部普通文件中

    在上一节中我们已经实现了将用户的订单信息提交到服务器端,然后服务器端将提交信息返回并显示到页面上.这一节将把上一节用户的订单信息保存到外部的普通文件中(即.txt文本文件中). 本节代码将用户提交的订 ...

  4. MVC Post 提交表单 允许他提交参数包含html标记的解决方法

    MVC Post 提交表单的时候,如果参数中包含html标记,则需要在控制器上方加上 [ValidateInput(false)]标记后就可以正常提交表单了例如: [HttpPost] [Valida ...

  5. PHP自学3——在html的<table>标签中显示用户提交表单

    为了更好地显示用户提交表单,本节将在上一节的基础上将读取的用户表单显示在html的<table>标签中,这一节将用到和数组有关的知识. 本节代码将从外部文件(.txt文件)中读取信息于指定 ...

  6. jquery 通过submit()方法 提交表单示例

    jquery 通过submit()方法 提交表单示例: 本示例:以用户注册作为例子.使用jquery中的submit()方法实现表单提交. 注:本示例仅提供了对表单的验证,本例只用选用了三个字段作为测 ...

  7. 4 django系列之HTML通过form标签来同时提交表单内容与上传文件

    preface 我们知道提交表单有2种方式,一种直接通过submit页面刷新方法来提交,另一种通过ajax异步局部刷新的方法提交,上回我们说了通过ajax来提交文件到后台,现在说说通过submit来提 ...

  8. Jquery ajax提交表单几种方法

    在jquery中ajax提交表单有post与get方式,在使用get方式时我们可以直接使用ajax 序列化表单$('#表单ID').serialize();就行了,下面我来介绍两个提交表单数据的方法. ...

  9. 解析:使用easyui的form提交表单,在IE下出现类似附件下载时提示是否保存的现象

    之前开发时遇到的一个问题,使用easyui的form提交表单,在Chrome下时没问题的,但是在IE下出现类似附件下载时提示是否保存的现象. 这里记录一下如何解决的.其实这个现象不光是easyui的f ...

随机推荐

  1. Asp.net MVC4 +EF6开发的个人网站源码和介绍(仅供新手学习)

    本项目是我去年利用业余时间开发的,采用的是asp.net mvc 4 +EF6+三层架构,适合新手进行学习,高手就没有什么价值了,可以直接跳过. 源码和数据库下载(已上传到git):https://g ...

  2. 8-15 Shuffle uva12174

    题意: 你正在使用的音乐播放器有一个所谓的乱序功能,即随机打乱歌曲的播放顺序.假设一共有s首歌,则一开始会给这s首歌随机排序,全部播放完毕后再重新随机排序.继续播放,依此类推.注意,当s首歌播放完毕之 ...

  3. SQL Server 跨服务器快速数据转移

    最近遇到一个问题,要将 a 服务器上的 A 库,迁移到 b 服务器上的 B 库,两个库的数据结构是一样的,但是数据库版本是 a 比 b 高,通过 sqlserver  还原这条路是走不通了,那难道除了 ...

  4. linux config

    1.自定义命令:.bashrc 文件添加自定义命令 2.完成后,命令:source . .bashrc  使配置的自定义命令生效,如果提示没有该命令的情况,用   . .bashrc (注意是2个“点 ...

  5. 组装者模式在React Native项目中的一个实战案例

    前言 在实际的开发中,如果遇到多个组件有一些共性,我们可以提取一个BaseItem出来,然后在多个组件中进行复用,一种方式是通过继承的方式,而今天我们要说的是另一种方式--组装者模式. 什么是组装者模 ...

  6. Servlet中保存的cookie值读取不到

    在设计登录时记住密码功能时,很多时候回使用cookie,在Servlet中保存cookie时,再次访问登录页面,没有读取到保存的cookie值,代码如下: 1 Cookie idCookie = ne ...

  7. HTTP 缓存之ETag 和Cache-Control的使用方法介绍

    什么是http缓存,有什么作用 通过网络获取内容既速度缓慢又开销巨大.较大的响应需要在客户端与服务器之间进行多次往返通信,这会延迟浏览器获得和处理内容的时间,还会增加访问者的流量费用.因此,缓存并重复 ...

  8. [leetcode tree]104. Maximum Depth of Binary Tree

    求树的最大深度 class Solution(object): def maxDepth(self, root): if not root: return 0 left = self.maxDepth ...

  9. python实现括号匹配

    1.用一个栈[python中可以用List]就可以解决,时间和空间复杂度都是O(n) # -*- coding: utf8 -*- # 符号表 SYMBOLS = {'}': '{', ']': '[ ...

  10. 在Kali Linux上编译Windows EXP

    使用vc6.0去编译的时候,难免会出现点问题 这里找到MS11-046的exp来编译 poc地址:https://www.exploit-db.com/exploits/40564/ 首先需要安装mi ...