diff --git a/README.md b/README.md index cb67824..20df57d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -jqueryIntroLoader (version 1.1.3) +jqueryIntroLoader (version 1.2.0) =================================== a jQuery plugin for generate animated Intro Loading Pages. @@ -51,6 +51,9 @@ This plugin use some tird party software to do something during animations.
[SpinJs](fgnass.github.io/spin.js/) and [jQueryEasing](http://gsgd.co.uk/sandbox/jquery/easing/) ###ChangeLogs +**version 1.2.0**
+*------------------*
+New animation *"doubleLoader"* added.
**version 1.1.3**
*------------------*
white colored background added to the loader
@@ -68,4 +71,4 @@ some bug correction **version 1.1.0**
*------------------*
-.stop() data method added (with 2 related new plugin options); +.stop() data method added (with 2 related new plugin options); \ No newline at end of file diff --git a/demo/demo-doubleloader.html b/demo/demo-doubleloader.html new file mode 100644 index 0000000..afb30af --- /dev/null +++ b/demo/demo-doubleloader.html @@ -0,0 +1,85 @@ + + + + jQuery IntroLoader Demo + + + + + + + + + + + + + + + +
+

jqueryIntroLoader demopage

+

DoubleLoader Animation Example

+

+ Back to Demos Index +

+
+

Animation description

+

+ This is a simple demo of jqueryIntroLoader using "doubleLoader" animation. +

+ +
+$("#element").introLoader({
+    animation: {
+        name: 'doubleLoader',
+        options: {
+            effect:'fadeOut',
+            ease: "easeInOutCirc",
+            style: 'fluoGreen',
+            delayTime: 500,
+            animationTime: 300,
+            progbarAnimationTime: 700,
+            progbarDelayAfter: 400
+        }
+    }
+});
+
+ + +
+ + + + + + + + + + + diff --git a/demo/index.html b/demo/index.html index 63a6814..b60f81f 100644 --- a/demo/index.html +++ b/demo/index.html @@ -28,6 +28,10 @@

SimpleLoader Animation

  • SimpleLoader: slideBottom + callback onAfter
  • SimpleLoader: slideUp + onBefore + callback onAfter
  • +

    DoubleLoader Animation

    +

    New Start/Stop methods (from version 1.1.0)