Skip to content

Commit 38cb645

Browse files
Merge pull request #8 from SolidDigital/fix/fade-css
fix elementor fade css
2 parents 0c0411f + 6c8a969 commit 38cb645

3 files changed

Lines changed: 59 additions & 38 deletions

File tree

Lines changed: 53 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,57 @@
1-
@keyframes fadeInDown {
2-
from {
3-
opacity: 0;
4-
transform: translate3d(0, -10%, 0)
5-
}
6-
to {
7-
opacity: 1;
8-
transform: none;
9-
}
1+
/* ------ FadeIn up/down/left/right Animation Smoothing:*/
2+
.fadeInUp {
3+
animation-name: sdfadeInUp !important;
104
}
11-
@keyframes fadeInLeft {
12-
from {
13-
opacity: 0;
14-
transform: translate3d(-10%, 0, 0)
15-
}
16-
to {
17-
opacity: 1;
18-
transform: none;
19-
}
5+
@keyframes sdfadeInUp {
6+
from {
7+
opacity: 0;
8+
transform: translate3d(0,10%,0)
9+
}
10+
11+
to {
12+
opacity: 1;
13+
transform: none
14+
}
2015
}
21-
@keyframes fadeInRight {
22-
from {
23-
opacity: 0;
24-
transform: translate3d(10%, 0, 0)
25-
}
26-
to {
27-
opacity: 1;
28-
transform: none;
29-
}
16+
17+
.fadeInDown {
18+
animation-name: sdfadeInDown !important;
3019
}
31-
@keyframes fadeInUp {
32-
from {
33-
opacity: 0;
34-
transform: translate3d(0, 10%, 0)
35-
}
36-
to {
37-
opacity: 1;
38-
transform: none;
39-
}
20+
@keyframes sdfadeInDown {
21+
from {
22+
opacity: 0;
23+
transform: translate3d(0, -10%, 0);
24+
}
25+
to {
26+
opacity: 1;
27+
transform: none;
28+
}
4029
}
30+
31+
.fadeInLeft {
32+
animation-name: sdfadeInLeft !important;
33+
}
34+
@keyframes sdfadeInLeft {
35+
from {
36+
opacity: 0;
37+
transform: translate3d(-10%, 0, 0);
38+
}
39+
to {
40+
opacity: 1;
41+
transform: none;
42+
}
43+
}
44+
45+
.fadeInRight {
46+
animation-name: sdfadeInRight !important;
47+
}
48+
@keyframes sdfadeInRight {
49+
from {
50+
opacity: 0;
51+
transform: translate3d(10%, 0, 0);
52+
}
53+
to {
54+
opacity: 1;
55+
transform: none;
56+
}
57+
}

readme.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Contributors: soliddigital,lukechinworth,peterajtai
33
Tags: elementor, dynamic tags, jet engine, macros
44
Tested up to: 6.7.1
5-
Stable tag: 1.6.2
5+
Stable tag: 1.7.0
66
Requires PHP: 7.0
77
License: GPLv2
88

@@ -51,6 +51,10 @@ The code is managed on [github](https://github.com/SolidDigital/solid-dynamics),
5151

5252
== Changelog ==
5353

54+
= 1.7.0 =
55+
2024-11-26
56+
- Feature: Update elementor fade in animation css.
57+
5458
= 1.6.2 =
5559
2024-11-24
5660
- Feature: Moving "Solid Dynamics" to its own menu page

solid-dynamics.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* Plugin Name: Solid Dynamics
55
* Description: Helpful utilities for Elementor, Jet Engine, and beyond.
6-
* Version: 1.6.2
6+
* Version: 1.7.0
77
* Author: Solid Digital
88
* Author URI: https://www.soliddigital.com
99
* License: GPLv2

0 commit comments

Comments
 (0)