Changeset 3002023
- Timestamp:
- 11/27/2023 07:18:10 AM (2 years ago)
- Location:
- confetti-fall-animation
- Files:
-
- 6 edited
-
tags/1.2.0/assets/css/popup-plugin.css (modified) (1 diff)
-
tags/1.2.0/confetti-fall-animation.php (modified) (4 diffs)
-
tags/1.2.0/readme.txt (modified) (2 diffs)
-
trunk/assets/css/popup-plugin.css (modified) (1 diff)
-
trunk/confetti-fall-animation.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
confetti-fall-animation/tags/1.2.0/assets/css/popup-plugin.css
r2967085 r3002023 18 18 transform: translate(-50%, -50%); 19 19 background-color: #fff; 20 padding: 30px;20 padding: 20px; 21 21 height: auto; 22 22 width: 35%; 23 23 text-align: center; 24 24 box-shadow: -50px 0 200px -50px #504bff, 50px 0 200px -50px #4cfa63; 25 border-radius: 12px;25 border-radius: 6px; 26 26 display: none; 27 z-index: 1000;27 z-index: 9999; 28 28 transition: all ease-in .4s; 29 29 } 30 #confetti-popup h 1{30 #confetti-popup h2 { 31 31 font-family: inherit; 32 32 font-size: 36px; -
confetti-fall-animation/tags/1.2.0/confetti-fall-animation.php
r2967093 r3002023 3 3 /** 4 4 * @package confetti-fall-animation 5 * @version 1.2. 05 * @version 1.2.1 6 6 **/ 7 7 … … 12 12 Author: WPDeveloperr 13 13 Author URI: https://wpdeveloperr.com/ 14 Version: 1.2. 014 Version: 1.2.1 15 15 License: GPLv2 or later 16 16 Text Domain: confetti-fall-animation … … 190 190 function confetti_popup_content_callback() { 191 191 $content = get_option('confetti-popup-content', ''); 192 $value = !empty($content) ? $content : '<h 1> Welcome to Confetti Animation</h1>';192 $value = !empty($content) ? $content : '<h2> Welcome to Confetti Animation</h2>'; 193 193 echo '<textarea name="confetti-popup-content" rows="5" cols="50">' . esc_textarea($value) . '</textarea>'; 194 194 echo '<br><small>You can use html tags as well</small>'; … … 213 213 // Display the popup content here 214 214 ?> 215 <div id="confetti-popup" style="display: none;"> <?php echo wp_kses_post($content); ?> <a id="confetti-popup-close"> <i class="fa fa- phone"></i> Close</a> </div>; <?php215 <div id="confetti-popup" style="display: none;"> <?php echo wp_kses_post($content); ?> <a id="confetti-popup-close"> <i class="fa fa-close"></i></a> </div>; <?php 216 216 } 217 217 } -
confetti-fall-animation/tags/1.2.0/readme.txt
r2967093 r3002023 3 3 Tags: happy new year, confetti, fireworks, fall animation, celebration, fun, falling roses, happy, leaves falling, Summer, winter, New year night 4 4 Requires at least: 5.0.1 5 Tested up to: 6. 36 Stable tag: 1.2. 05 Tested up to: 6.4 6 Stable tag: 1.2.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 46 46 == Changelog == 47 47 48 = 1.2.1 = 49 * Some Popup bugs fixed. 50 * Easy customization added. 51 48 52 = 1.2.0 = 49 53 * A dashboard menu added. -
confetti-fall-animation/trunk/assets/css/popup-plugin.css
r2967085 r3002023 18 18 transform: translate(-50%, -50%); 19 19 background-color: #fff; 20 padding: 30px;20 padding: 20px; 21 21 height: auto; 22 22 width: 35%; 23 23 text-align: center; 24 24 box-shadow: -50px 0 200px -50px #504bff, 50px 0 200px -50px #4cfa63; 25 border-radius: 12px;25 border-radius: 6px; 26 26 display: none; 27 z-index: 1000;27 z-index: 9999; 28 28 transition: all ease-in .4s; 29 29 } 30 #confetti-popup h 1{30 #confetti-popup h2 { 31 31 font-family: inherit; 32 32 font-size: 36px; -
confetti-fall-animation/trunk/confetti-fall-animation.php
r2967093 r3002023 3 3 /** 4 4 * @package confetti-fall-animation 5 * @version 1.2. 05 * @version 1.2.1 6 6 **/ 7 7 … … 12 12 Author: WPDeveloperr 13 13 Author URI: https://wpdeveloperr.com/ 14 Version: 1.2. 014 Version: 1.2.1 15 15 License: GPLv2 or later 16 16 Text Domain: confetti-fall-animation … … 119 119 $parent_url = 'confetti-animation'; 120 120 $icon_url = 'dashicons-buddicons-community'; 121 add_menu_page('CF Animation','CF Animation','manage_options', $parent_url,'confetti_animation_page', $icon_url, 80);121 add_menu_page('CF Animation','CF Animation','manage_options', $parent_url,'confetti_animation_page', $icon_url, 80); 122 122 add_submenu_page( $parent_url, 'Popup Settings', 'Popup Settings', 'manage_options', 'popup-settings', 'confetti_popup_setting_page'); 123 123 … … 190 190 function confetti_popup_content_callback() { 191 191 $content = get_option('confetti-popup-content', ''); 192 $value = !empty($content) ? $content : '<h 1> Welcome to Confetti Animation</h1>';192 $value = !empty($content) ? $content : '<h2> Welcome to Confetti Animation</h2>'; 193 193 echo '<textarea name="confetti-popup-content" rows="5" cols="50">' . esc_textarea($value) . '</textarea>'; 194 194 echo '<br><small>You can use html tags as well</small>'; … … 213 213 // Display the popup content here 214 214 ?> 215 <div id="confetti-popup" style="display: none;"> <?php echo wp_kses_post($content); ?> <a id="confetti-popup-close"> <i class="fa fa- phone"></i> Close</a> </div>; <?php215 <div id="confetti-popup" style="display: none;"> <?php echo wp_kses_post($content); ?> <a id="confetti-popup-close"> <i class="fa fa-close"></i></a> </div>; <?php 216 216 } 217 217 } -
confetti-fall-animation/trunk/readme.txt
r2967093 r3002023 3 3 Tags: happy new year, confetti, fireworks, fall animation, celebration, fun, falling roses, happy, leaves falling, Summer, winter, New year night 4 4 Requires at least: 5.0.1 5 Tested up to: 6. 36 Stable tag: 1.2. 05 Tested up to: 6.4 6 Stable tag: 1.2.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 40 40 == Compatibility == 41 41 42 Fully compatible with elementor, WPbakery, Divi, Gutenburg blocks. Add Confetti fall animation via shortcode and enjoy.42 Fully compatible with elementor, WPbakery, Divi, Gutenburg blocks. Add Confetti fall animation via Shortcode and enjoy. 43 43 44 44 ================================================================================ 45 45 46 46 == Changelog == 47 48 = 1.2.1 = 49 * Some Popup bugs fixed. 50 * Easy customization added. 47 51 48 52 = 1.2.0 =
Note: See TracChangeset
for help on using the changeset viewer.