Version Description
Download this release
Release Info
Developer | eleopard |
Plugin | Animate It! |
Version | 2.1.1 |
Comparing to | |
See all releases |
Code changes from version 2.1.0 to 2.1.1
- assets/css/animate-animo.css +5 -1
- assets/js/edsanimate.js +3 -1
- assets/js/edsanimate.site.js +5 -1
- edsanimate.php +2 -2
- readme.txt +6 -2
assets/css/animate-animo.css
CHANGED
@@ -4475,4 +4475,8 @@ Daniel Raftery <@ThirvingKings>
|
|
4475 |
100% { transform: rotate3d( 80,70,10,180deg ); }
|
4476 |
}
|
4477 |
|
4478 |
-
|
|
|
|
|
|
|
|
4475 |
100% { transform: rotate3d( 80,70,10,180deg ); }
|
4476 |
}
|
4477 |
|
4478 |
+
.animated {
|
4479 |
+
-webkit-animation-play-state: paused;
|
4480 |
+
animation-play-state: paused;
|
4481 |
+
}
|
4482 |
+
|
assets/js/edsanimate.js
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
var animationStyleClasses = ["animated","infinite", "bounce", "flash", "pulse", "rubberBand", "shake", "swing", "tada", "wobble", "bounceIn", "bounceInDown", "bounceInLeft", "bounceInRight", "bounceInUp", "bounceOut", "bounceOutDown", "bounceOutLeft", "bounceOutRight", "bounceOutUp", "fadeIn", "fadeInDown", "fadeInDownBig", "fadeInLeft", "fadeInLeftBig", "fadeInRight", "fadeInRightBig", "fadeInUp", "fadeInUpBig", "fadeOut", "fadeOutDown", "fadeOutDownBig", "fadeOutLeft", "fadeOutLeftBig", "fadeOutRight", "fadeOutRightBig", "fadeOutUp", "fadeOutUpBig", "flip", "flipInX", "flipInY", "flipOutX", "flipOutY", "lightSpeedIn", "lightSpeedOut", "rotateIn", "rotateInDownLeft", "rotateInDownRight", "rotateInUpLeft", "rotateInUpRight", "rotateOut", "rotateOutDownLeft", "rotateOutDownRight", "rotateOutUpLeft", "rotateOutUpRight", "hinge", "rollIn", "rollOut", "zoomIn", "zoomInDown", "zoomInLeft", "zoomInRight", "zoomInUp", "zoomOut", "zoomOutDown", "zoomOutLeft", "zoomOutRight", "zoomOutUp"];
|
4 |
var delayClasses = ["delay1", "delay2", "delay3", "delay4", "delay5", "delay6", "delay7", "delay8", "delay9", "delay10", "delay11", "delay12"];
|
5 |
var durationClasses = ["duration1", "duration2", "duration3", "duration4", "duration5", "duration6", "duration7", "duration8", "duration9", "duration10", "duration11", "duration12", "duration13", "duration14", "duration15", "duration16", "duration17", "duration18", "duration19", "duration20"];
|
6 |
-
var scrollOffset = edsanimate_options.offset;
|
7 |
|
8 |
$('.eds-on-scroll').each(function(){
|
9 |
var $module = $(this);
|
@@ -99,6 +99,8 @@
|
|
99 |
|
100 |
});
|
101 |
|
|
|
|
|
102 |
|
103 |
});
|
104 |
})(jQuery);
|
3 |
var animationStyleClasses = ["animated","infinite", "bounce", "flash", "pulse", "rubberBand", "shake", "swing", "tada", "wobble", "bounceIn", "bounceInDown", "bounceInLeft", "bounceInRight", "bounceInUp", "bounceOut", "bounceOutDown", "bounceOutLeft", "bounceOutRight", "bounceOutUp", "fadeIn", "fadeInDown", "fadeInDownBig", "fadeInLeft", "fadeInLeftBig", "fadeInRight", "fadeInRightBig", "fadeInUp", "fadeInUpBig", "fadeOut", "fadeOutDown", "fadeOutDownBig", "fadeOutLeft", "fadeOutLeftBig", "fadeOutRight", "fadeOutRightBig", "fadeOutUp", "fadeOutUpBig", "flip", "flipInX", "flipInY", "flipOutX", "flipOutY", "lightSpeedIn", "lightSpeedOut", "rotateIn", "rotateInDownLeft", "rotateInDownRight", "rotateInUpLeft", "rotateInUpRight", "rotateOut", "rotateOutDownLeft", "rotateOutDownRight", "rotateOutUpLeft", "rotateOutUpRight", "hinge", "rollIn", "rollOut", "zoomIn", "zoomInDown", "zoomInLeft", "zoomInRight", "zoomInUp", "zoomOut", "zoomOutDown", "zoomOutLeft", "zoomOutRight", "zoomOutUp"];
|
4 |
var delayClasses = ["delay1", "delay2", "delay3", "delay4", "delay5", "delay6", "delay7", "delay8", "delay9", "delay10", "delay11", "delay12"];
|
5 |
var durationClasses = ["duration1", "duration2", "duration3", "duration4", "duration5", "duration6", "duration7", "duration8", "duration9", "duration10", "duration11", "duration12", "duration13", "duration14", "duration15", "duration16", "duration17", "duration18", "duration19", "duration20"];
|
6 |
+
var scrollOffset = edsanimate_options.offset;
|
7 |
|
8 |
$('.eds-on-scroll').each(function(){
|
9 |
var $module = $(this);
|
99 |
|
100 |
});
|
101 |
|
102 |
+
$('.animated').css('-webkit-animation-play-state', 'running');
|
103 |
+
$('.animated').css('animation-play-state', 'running');
|
104 |
|
105 |
});
|
106 |
})(jQuery);
|
assets/js/edsanimate.site.js
CHANGED
@@ -139,7 +139,11 @@
|
|
139 |
( '1' == edsanimate_options.hide_hz_scrollbar ) ? $('body').css('overflow-x', 'hidden'): '';
|
140 |
( '1' == edsanimate_options.hide_vl_scrollbar ) ? $('body').css('overflow-y', 'hidden'): '';
|
141 |
}
|
142 |
-
}
|
|
|
|
|
|
|
|
|
143 |
$('.eds-animate').each( function(){
|
144 |
$(this).initEDSAnimateBlock();
|
145 |
});
|
139 |
( '1' == edsanimate_options.hide_hz_scrollbar ) ? $('body').css('overflow-x', 'hidden'): '';
|
140 |
( '1' == edsanimate_options.hide_vl_scrollbar ) ? $('body').css('overflow-y', 'hidden'): '';
|
141 |
}
|
142 |
+
}
|
143 |
+
|
144 |
+
$('.eds-animate').css('-webkit-animation-play-state', 'running');
|
145 |
+
$('.eds-animate').css('animation-play-state', 'running');
|
146 |
+
|
147 |
$('.eds-animate').each( function(){
|
148 |
$(this).initEDSAnimateBlock();
|
149 |
});
|
edsanimate.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
* Text Domain: eds-animate
|
5 |
* Domain Path: /lang
|
6 |
* Plugin URI: http://www.eleopard.in
|
7 |
-
* Description:
|
8 |
-
* Version: 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
|
4 |
* Text Domain: eds-animate
|
5 |
* Domain Path: /lang
|
6 |
* Plugin URI: http://www.eleopard.in
|
7 |
+
* Description: Add cool CSS3 animations to your content.
|
8 |
+
* Version: 2.1.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.5
|
6 |
-
Stable tag: 2.1.
|
7 |
License: GNU General Public License version 2 or later
|
8 |
License URI: http://www.gnu.org/copyleft/gpl.html
|
9 |
|
@@ -77,6 +77,10 @@ Add duration class ( duration1 to duration20 ) along with the other classes. or
|
|
77 |
|
78 |
== Changelog ==
|
79 |
|
|
|
|
|
|
|
|
|
80 |
= Version 2.1.0 =
|
81 |
* Text domain added
|
82 |
* Mobile_Detect class updated
|
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.5.1
|
6 |
+
Stable tag: 2.1.1
|
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.1.1 =
|
81 |
+
* Minor changes to handle load time delay
|
82 |
+
* Description updated
|
83 |
+
|
84 |
= Version 2.1.0 =
|
85 |
* Text domain added
|
86 |
* Mobile_Detect class updated
|