Changeset 3197610
- Timestamp:
- 11/26/2024 05:24:49 PM (16 months ago)
- Location:
- solid-dynamics
- Files:
-
- 6 edited
- 1 copied
-
tags/1.7.0 (copied) (copied from solid-dynamics/trunk)
-
tags/1.7.0/assets/elementor-subtle-fade-in-entrance-animations.css (modified) (1 diff)
-
tags/1.7.0/readme.txt (modified) (2 diffs)
-
tags/1.7.0/solid-dynamics.php (modified) (1 diff)
-
trunk/assets/elementor-subtle-fade-in-entrance-animations.css (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/solid-dynamics.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
solid-dynamics/tags/1.7.0/assets/elementor-subtle-fade-in-entrance-animations.css
r2808866 r3197610 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; 10 4 } 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 } 20 15 } 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; 30 19 } 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 } 40 29 } 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 } -
solid-dynamics/tags/1.7.0/readme.txt
r3195944 r3197610 3 3 Tags: elementor, dynamic tags, jet engine, macros 4 4 Tested up to: 6.7.1 5 Stable tag: 1. 6.25 Stable tag: 1.7.0 6 6 Requires PHP: 7.0 7 7 License: GPLv2 … … 51 51 52 52 == Changelog == 53 54 = 1.7.0 = 55 2024-11-26 56 - Feature: Update elementor fade in animation css. 53 57 54 58 = 1.6.2 = -
solid-dynamics/tags/1.7.0/solid-dynamics.php
r3195944 r3197610 4 4 * Plugin Name: Solid Dynamics 5 5 * Description: Helpful utilities for Elementor, Jet Engine, and beyond. 6 * Version: 1. 6.26 * Version: 1.7.0 7 7 * Author: Solid Digital 8 8 * Author URI: https://www.soliddigital.com -
solid-dynamics/trunk/assets/elementor-subtle-fade-in-entrance-animations.css
r2808866 r3197610 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; 10 4 } 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 } 20 15 } 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; 30 19 } 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 } 40 29 } 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 } -
solid-dynamics/trunk/readme.txt
r3195944 r3197610 3 3 Tags: elementor, dynamic tags, jet engine, macros 4 4 Tested up to: 6.7.1 5 Stable tag: 1. 6.25 Stable tag: 1.7.0 6 6 Requires PHP: 7.0 7 7 License: GPLv2 … … 51 51 52 52 == Changelog == 53 54 = 1.7.0 = 55 2024-11-26 56 - Feature: Update elementor fade in animation css. 53 57 54 58 = 1.6.2 = -
solid-dynamics/trunk/solid-dynamics.php
r3195944 r3197610 4 4 * Plugin Name: Solid Dynamics 5 5 * Description: Helpful utilities for Elementor, Jet Engine, and beyond. 6 * Version: 1. 6.26 * Version: 1.7.0 7 7 * Author: Solid Digital 8 8 * Author URI: https://www.soliddigital.com
Note: See TracChangeset
for help on using the changeset viewer.