Version Description
Download this release
Release Info
Developer | eleopard |
Plugin | Animate It! |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2.0 to 2.2.1
- assets/css/animate-animo.css +5 -13
- assets/js/edsanimate.site.js +4 -8
- assets/js/viewportchecker.js +3 -7
- edsanimate.php +1 -1
- readme.txt +5 -2
assets/css/animate-animo.css
CHANGED
@@ -13,14 +13,10 @@ 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 |
-
}
|
22 |
-
|
23 |
-
.eds-scroll-hidden {
|
24 |
opacity:0;
|
25 |
}
|
26 |
|
@@ -269,20 +265,16 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
269 |
-webkit-backface-visibility: hidden;
|
270 |
|
271 |
animation-fill-mode: both;
|
272 |
-
transform: translate3d(0, 0, 0);
|
273 |
-
perspective: 1000;
|
274 |
|
275 |
-o-animation-fill-mode: both;
|
276 |
-
-o-transform: translate3d(0, 0, 0);
|
277 |
-
-o-perspective: 1000;
|
278 |
|
279 |
-moz-animation-fill-mode: both;
|
280 |
-moz-transform: translate3d(0, 0, 0);
|
281 |
-
|
282 |
-
|
283 |
-webkit-animation-fill-mode: both;
|
284 |
-webkit-transform: translate3d(0, 0, 0);
|
285 |
-
-webkit-perspective: 1000;
|
286 |
}
|
287 |
|
288 |
.animated.infinite {
|
13 |
*/
|
14 |
|
15 |
.eds-animate {
|
16 |
+
overflow: hidden;
|
17 |
}
|
18 |
|
19 |
+
.edsanimate-sis-hidden, .eds-scroll-hidden {
|
|
|
|
|
|
|
|
|
20 |
opacity:0;
|
21 |
}
|
22 |
|
265 |
-webkit-backface-visibility: hidden;
|
266 |
|
267 |
animation-fill-mode: both;
|
268 |
+
transform: translate3d(0, 0, 0);
|
|
|
269 |
|
270 |
-o-animation-fill-mode: both;
|
271 |
+
-o-transform: translate3d(0, 0, 0);
|
|
|
272 |
|
273 |
-moz-animation-fill-mode: both;
|
274 |
-moz-transform: translate3d(0, 0, 0);
|
275 |
+
|
|
|
276 |
-webkit-animation-fill-mode: both;
|
277 |
-webkit-transform: translate3d(0, 0, 0);
|
|
|
278 |
}
|
279 |
|
280 |
.animated.infinite {
|
assets/js/edsanimate.site.js
CHANGED
@@ -13,10 +13,9 @@
|
|
13 |
this.edsElemAnimating = false;
|
14 |
|
15 |
this.checkPosition = function() {
|
16 |
-
|
17 |
-
windowHeight = edsWObj.height()
|
18 |
-
|
19 |
-
viewportTop = $(scrollElem).scrollTop(),
|
20 |
viewportBottom = (viewportTop + windowHeight),
|
21 |
elemTop = '';
|
22 |
|
@@ -55,10 +54,7 @@
|
|
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 |
}
|
13 |
this.edsElemAnimating = false;
|
14 |
|
15 |
this.checkPosition = function() {
|
16 |
+
|
17 |
+
var windowHeight = edsWObj.height(),
|
18 |
+
viewportTop = $(document).scrollTop(),
|
|
|
19 |
viewportBottom = (viewportTop + windowHeight),
|
20 |
elemTop = '';
|
21 |
|
54 |
});
|
55 |
};
|
56 |
|
57 |
+
this.edsInit = function() {
|
|
|
|
|
|
|
58 |
if( obj.edsAnimations.length >= 1 ) {
|
59 |
setTimeout( function(){obj.edsAnimate( 0, 0 )}, Number( obj.edsAnimations[0].delay ) * 1000);
|
60 |
}
|
assets/js/viewportchecker.js
CHANGED
@@ -13,9 +13,8 @@
|
|
13 |
|
14 |
this.checkElements = function(){
|
15 |
|
16 |
-
var
|
17 |
-
|
18 |
-
viewportTop = $(scrollElem).scrollTop(),
|
19 |
viewportBottom = (viewportTop + windowHeight);
|
20 |
|
21 |
$elem.each(function(){
|
@@ -38,10 +37,7 @@
|
|
38 |
// Add class if in viewport
|
39 |
if ((elemTop < viewportBottom) && (elemBottom > viewportTop)){
|
40 |
$obj.addClass(options.classToAdd);
|
41 |
-
$obj.removeClass(options.classToRemove);
|
42 |
-
setTimeout(function(){
|
43 |
-
$obj.css('overflow', 'hidden');
|
44 |
-
}, 250);
|
45 |
options.callbackFunction($obj);
|
46 |
}
|
47 |
});
|
13 |
|
14 |
this.checkElements = function(){
|
15 |
|
16 |
+
var windowHeight = $(window).height(),
|
17 |
+
viewportTop = $(document).scrollTop(),
|
|
|
18 |
viewportBottom = (viewportTop + windowHeight);
|
19 |
|
20 |
$elem.each(function(){
|
37 |
// Add class if in viewport
|
38 |
if ((elemTop < viewportBottom) && (elemBottom > viewportTop)){
|
39 |
$obj.addClass(options.classToAdd);
|
40 |
+
$obj.removeClass(options.classToRemove);
|
|
|
|
|
|
|
41 |
options.callbackFunction($obj);
|
42 |
}
|
43 |
});
|
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.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.1
|
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
@@ -2,8 +2,8 @@
|
|
2 |
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.
|
6 |
-
Stable tag: 2.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.2.0 =
|
86 |
* Bug fixes for chrome 61+ version
|
87 |
|
2 |
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.9.1
|
6 |
+
Stable tag: 2.2.1
|
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.1 =
|
86 |
+
* Bug fixes for chrome 61+ version
|
87 |
+
|
88 |
= Version 2.2.0 =
|
89 |
* Bug fixes for chrome 61+ version
|
90 |
|