Version Description
Download this release
Release Info
Developer | eleopard |
Plugin | Animate It! |
Version | 2.2.0 |
Comparing to | |
See all releases |
Code changes from version 2.1.9 to 2.2.0
- assets/css/animate-animo.css +2 -3
- assets/js/edsanimate.site.js +5 -2
- edsanimate.php +1 -1
- readme.txt +4 -1
assets/css/animate-animo.css
CHANGED
@@ -13,12 +13,11 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
13 |
*/
|
14 |
|
15 |
.eds-animate {
|
16 |
-
overflow:
|
17 |
}
|
18 |
|
19 |
.edsanimate-sis-hidden {
|
20 |
-
opacity:0;
|
21 |
-
overflow: auto !important;
|
22 |
}
|
23 |
|
24 |
.eds-scroll-hidden {
|
13 |
*/
|
14 |
|
15 |
.eds-animate {
|
16 |
+
overflow: auto;
|
17 |
}
|
18 |
|
19 |
.edsanimate-sis-hidden {
|
20 |
+
opacity:0;
|
|
|
21 |
}
|
22 |
|
23 |
.eds-scroll-hidden {
|
assets/js/edsanimate.site.js
CHANGED
@@ -35,7 +35,7 @@
|
|
35 |
}
|
36 |
|
37 |
this.edsAnimate = function(counter, iteration) {
|
38 |
-
obj.removeClass('edsanimate-sis-hidden' );
|
39 |
obj.animo( obj.edsAnimations[ counter ].animoSettings, function() {
|
40 |
counter++
|
41 |
if( counter < obj.edsAnimations.length ) {
|
@@ -55,7 +55,10 @@
|
|
55 |
});
|
56 |
};
|
57 |
|
58 |
-
this.edsInit = function() {
|
|
|
|
|
|
|
59 |
if( obj.edsAnimations.length >= 1 ) {
|
60 |
setTimeout( function(){obj.edsAnimate( 0, 0 )}, Number( obj.edsAnimations[0].delay ) * 1000);
|
61 |
}
|
35 |
}
|
36 |
|
37 |
this.edsAnimate = function(counter, iteration) {
|
38 |
+
obj.removeClass('edsanimate-sis-hidden' );
|
39 |
obj.animo( obj.edsAnimations[ counter ].animoSettings, function() {
|
40 |
counter++
|
41 |
if( counter < obj.edsAnimations.length ) {
|
55 |
});
|
56 |
};
|
57 |
|
58 |
+
this.edsInit = function() {
|
59 |
+
setTimeout(function(){
|
60 |
+
obj.css('overflow', 'hidden');
|
61 |
+
}, 250);
|
62 |
if( obj.edsAnimations.length >= 1 ) {
|
63 |
setTimeout( function(){obj.edsAnimate( 0, 0 )}, Number( obj.edsAnimations[0].delay ) * 1000);
|
64 |
}
|
edsanimate.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Domain Path: /lang
|
6 |
* Plugin URI: http://www.eleopard.in
|
7 |
* Description: Add cool CSS3 animations to your content.
|
8 |
-
* Version: 2.
|
9 |
* Author: eLEOPARD Design Studios
|
10 |
* Author URI: http://www.eleopard.in
|
11 |
* License: GNU General Public License version 2 or later; see LICENSE.txt
|
5 |
* Domain Path: /lang
|
6 |
* Plugin URI: http://www.eleopard.in
|
7 |
* Description: Add cool CSS3 animations to your content.
|
8 |
+
* Version: 2.2.0
|
9 |
* Author: eLEOPARD Design Studios
|
10 |
* Author URI: http://www.eleopard.in
|
11 |
* License: GNU General Public License version 2 or later; see LICENSE.txt
|
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.8.1
|
6 |
-
Stable tag: 2.
|
7 |
License: GNU General Public License version 2 or later
|
8 |
License URI: http://www.gnu.org/copyleft/gpl.html
|
9 |
|
@@ -82,6 +82,9 @@ Add duration class ( duration1 to duration20 ) along with the other classes. or
|
|
82 |
|
83 |
== Changelog ==
|
84 |
|
|
|
|
|
|
|
85 |
= Version 2.1.9 =
|
86 |
* Bug fixes for chrome 61+ version
|
87 |
|
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.8.1
|
6 |
+
Stable tag: 2.2.0
|
7 |
License: GNU General Public License version 2 or later
|
8 |
License URI: http://www.gnu.org/copyleft/gpl.html
|
9 |
|
82 |
|
83 |
== Changelog ==
|
84 |
|
85 |
+
= Version 2.2.0 =
|
86 |
+
* Bug fixes for chrome 61+ version
|
87 |
+
|
88 |
= Version 2.1.9 =
|
89 |
* Bug fixes for chrome 61+ version
|
90 |
|