Animate It! - Version 2.0.4

Version Description

Download this release

Release Info

Developer eleopard
Plugin Icon 128x128 Animate It!
Version 2.0.4
Comparing to
See all releases

Code changes from version 2.0.3 to 2.0.4

Files changed (3) hide show
  1. assets/css/animate-animo.css +6 -0
  2. edsanimate.php +2 -2
  3. readme.txt +4 -1
assets/css/animate-animo.css CHANGED
@@ -24,6 +24,12 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
24
  opacity:1;
25
  }
26
 
 
 
 
 
 
 
27
 
28
  /*Delay classes*/
29
  .delay1 {
24
  opacity:1;
25
  }
26
 
27
+ .animated {
28
+ -webkit-animation-duration: 1s;
29
+ -moz-animation-duration: 1s;
30
+ -ms-animation-duration: 1s;
31
+ -o-animation-duration: 1s;
32
+ }
33
 
34
  /*Delay classes*/
35
  .delay1 {
edsanimate.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Animate It!
4
  * Plugin URI: http://www.eleopard.in
5
  * Description: It will allow user to add CSS Animations
6
- * Version: 2.0.3
7
  * Author: eLEOPARD Design Studios
8
  * Author URI: http://www.eleopard.in
9
  * License: GNU General Public License version 2 or later; see LICENSE.txt
@@ -379,7 +379,7 @@ class EDS_Animate {
379
  if($duration!= '' && is_int((int)$duration) && $duration>=0) {
380
  $classString .= " duration" . $duration;
381
  } else {
382
- $classString .= " duration1";
383
  }
384
 
385
  if(strcasecmp($animate_on, 'scroll')==0) {
3
  * Plugin Name: Animate It!
4
  * Plugin URI: http://www.eleopard.in
5
  * Description: It will allow user to add CSS Animations
6
+ * Version: 2.0.4
7
  * Author: eLEOPARD Design Studios
8
  * Author URI: http://www.eleopard.in
9
  * License: GNU General Public License version 2 or later; see LICENSE.txt
379
  if($duration!= '' && is_int((int)$duration) && $duration>=0) {
380
  $classString .= " duration" . $duration;
381
  } else {
382
+ $classString .= " duration2";
383
  }
384
 
385
  if(strcasecmp($animate_on, 'scroll')==0) {
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: eleopard
3
  Tags: css3 animation, animate.css, jquery, on scroll animation, delay, infinite, entry exit, iteration
4
  Requires at least: 3.9
5
  Tested up to: 4.4.2
6
- Stable tag: 2.0.3
7
  License: GNU General Public License version 2 or later
8
  License URI: http://www.gnu.org/copyleft/gpl.html
9
 
@@ -77,6 +77,9 @@ Add duration class ( duration1 to duration20 ) along with the other classes. or
77
 
78
  == Changelog ==
79
 
 
 
 
80
  = Version 2.0.3 =
81
  * Minor fixes to support older version
82
 
3
  Tags: css3 animation, animate.css, jquery, on scroll animation, delay, infinite, entry exit, iteration
4
  Requires at least: 3.9
5
  Tested up to: 4.4.2
6
+ Stable tag: 2.0.4
7
  License: GNU General Public License version 2 or later
8
  License URI: http://www.gnu.org/copyleft/gpl.html
9
 
77
 
78
  == Changelog ==
79
 
80
+ = Version 2.0.4 =
81
+ * Minor fixes to support older version and classes added using class generator
82
+
83
  = Version 2.0.3 =
84
  * Minor fixes to support older version
85