Changeset 1045542
- Timestamp:
- 12/16/2014 09:17:36 AM (11 years ago)
- Location:
- snow-my-wp/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
snow-my-wp.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
snow-my-wp/trunk/readme.txt
r1038649 r1045542 1 1 === Plugin Name === 2 2 Contributors: ChetanVengurlekar, SarviSolutions 3 Donate link: http:// 3 Donate link: http://www.sarvisolutions.com/donate/ 4 4 Tags: christmas, snow, snow my website, website snow, snow on my website, christmas celebration, december snow 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.0.1 7 Stable tag: 0.17 Stable tag: 1.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 14 14 This is a plugin for the festive season. This plugin displays a snowfall with various snowflakes colors and sizes. Amaze your website visitors with a snowfall in winter or for that matter any season you want! 15 15 16 If you are facing any problem, let us know here: https://wordpress.org/support/plugin/snow-my-wp 17 16 18 == Installation == 17 19 18 20 1. Upload `snow-my-wp.zip` via `wp-admin/plugin-install.php?tab=upload` or upload the unzipped content to the `/wp-content/plugins/` directory of your WordPress installation. 19 2. Activate the plugin through the 'Plugins'menu in WordPress21 2. Activate the plugin through the `Plugins` menu in WordPress 20 22 3. You will see the snowfall on all your front-end pages as soon as you activate the plugin. 21 23 22 24 == Frequently Asked Questions == 23 25 24 = How do I turn off the snow ? =25 You can deactivate the plugin if you don't want to have asnowfall on your website.26 = How do I turn off the snow ? = 27 You can deactivate the plugin from `wp-admin/plugin.php` if you want to stop the snowfall on your website. 26 28 27 29 == Screenshots == 28 30 29 1. Plugin output on Twenty Tweleve - Screenshot 1.30 2. Plugin output on Twenty Thirteen - Screenshot 2.31 3. Plugin output on Twenty Fourteen - Screenshot 3.32 4. Plugin output on Twenty Fifteen - Screenshot 4.31 1. Plugin output on Twenty Tweleve 32 2. Plugin output on Twenty Thirteen 33 3. Plugin output on Twenty Fourteen 34 4. Plugin output on Twenty Fifteen 33 35 34 36 == Changelog == 37 38 = 1.0 = 39 * This version of the plugin works perfectly with 4.0.1. 35 40 36 41 = 0.1 = … … 39 44 == Upgrade Notice == 40 45 46 = 1.0 = 47 * This version of the plugin works perfectly with 4.0.1. 48 41 49 = 0.1 = 42 50 Upgrade immediately. -
snow-my-wp/trunk/snow-my-wp.php
r1037269 r1045542 2 2 /** 3 3 * @package Snow_My_WP 4 * @version 0.14 * @version 1.0 5 5 */ 6 6 /* … … 9 9 Description: A festive plugin for an awesome snowfall on your website. 10 10 Author: Chetan Vengurlekar 11 Version: 0.112 Author URI: http://www.sarvisolutions.com/ author/chetan11 Version: 1.0 12 Author URI: http://www.sarvisolutions.com/ 13 13 */ 14 14 function snow_my_wp() { … … 16 16 <!-- snow_my_wp [ start ] --> 17 17 <script type="text/javascript"> 18 // Set the number of snowflakes (more than 30 - 40 not recommended) 19 var maxsnow=50 20 // Set the colors for the snow. Add as many colors as you like 21 var colorsnow=new Array("#aaaacc","#ddddff","#ccccdd","#f3f3f3","#f0ffff","#bbf7f9") 22 // Set the fonts, that create the snowflakes. Add as many fonts as you like 23 var typesnow=new Array("Times","Arial","Times","Verdana") 24 // Set the letter that creates your snowflake (recommended: * ) 25 var lettersnow="*" 26 // Set the speed of sinking (recommended values range from 0.3 to 2) 27 var sinkspeed=0.6 28 // Set the maximum-size of your snowflakes 29 var maxsnowsize=30 30 // Set the minimal-size of your snowflakes 31 var minsnowsize=8 32 // Set the snowing-zone 33 // Set 1 for all-over-snowing, set 2 for left-side-snowing 34 // Set 3 for center-snowing, set 4 for right-side-snowing 35 var snowingzone=1 36 /////////////////////////////////////////////////////////////////////////// 18 var maxsnow=45 // Number of snowflakes 19 var colorsnow=new Array("#aaaacc","#ddddff","#ccccdd","#f3f3f3","#f0ffff","#bbf7f9") // Colors for the snow 20 var typesnow=new Array("Times","Arial","Times","Verdana")// Fonts for the snowflakes 21 var lettersnow="*" // Letter that creates the snowflake (recommended: * ) 22 var sinkspeed=0.75 // Speed of sinking (recommended values range from 0.3 to 2) 23 var maxsnowsize=30 // Maximum size of the snowflakes 24 var minsnowsize=8 // Minimum size of the snowflakes 25 var snowingzone=1 // Snowing zone : Set 1 for all-over-snowing, Set 2 for left-side-snowing, Set 3 for center-snowing, set 4 for right-side-snowing 37 26 var snow=new Array() 38 27 var marginbottom
Note: See TracChangeset
for help on using the changeset viewer.