Changeset 927777
- Timestamp:
- 06/06/2014 02:30:08 PM (12 years ago)
- Location:
- larbous-floating-menu/trunk
- Files:
-
- 2 edited
-
larbous-floating-menu.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
larbous-floating-menu/trunk/larbous-floating-menu.php
r921629 r927777 4 4 Plugin URI: http://larbo.us/plugins/larbous-floating-menu 5 5 Description: This plugin creates a fixed floating menu at left position. Set the options in Settings/Floating Menu 6 Version: 1. 06 Version: 1.1 7 7 Author: Luiz Sobral 8 8 Author URI: http://luizsobral.com.br … … 234 234 jq( document ).ready(function() { 235 235 jq(function() { 236 237 236 jq('#lbfm-navigation > li').hover( 238 237 function () { 239 jq( 'a',jq(this)).stop().animate({'marginLeft':'-2px'},200);238 jq(this).stop().animate({'marginLeft':'-2px'},200); 240 239 }, 241 240 function () { 242 jq( 'a',jq(this)).stop().animate({'marginLeft':'".$li_margin."px'},200);241 jq(this).stop().animate({'marginLeft':'".$li_margin."px'},200); 243 242 } 244 243 ); -
larbous-floating-menu/trunk/readme.txt
r921736 r927777 15 15 16 16 You can set: 17 18 *Choose a custom menu 19 *the color of the menu options: font e background 20 *the vertical position of the screen 17 * Choose a custom menu 18 * the color of the menu options: font e background 19 * the vertical position of the screen 21 20 22 21 Set the options in Settings / Larbous Floating Menu … … 26 25 27 26 1. Upload the folder larbous-floating-menu to the /wp-content/plugins/ directory of your site 28 2. Activate the plugin through the \ \\'Plugins\\\' menu in WordPress27 2. Activate the plugin through the \'Plugins\' menu in WordPress 29 28 3. Upload to media library your icons with size 48x48 or similar 30 29 4. Create a customized Menu in Appearence / Menu 31 5. Create options like \ \\"Option Item \\\"32 6. Save with any name. This plugin assumes as default the name \ \\"Larbous Floating Menu\\\"30 5. Create options like \"Option Item \" 31 6. Save with any name. This plugin assumes as default the name \"Larbous Floating Menu\" 33 32 34 33 … … 45 44 46 45 == Changelog == 46 = 1.1 = 47 The area of the mouseover was restricted to the visible space, usually the icon. 48 47 49 = 1.0 = 48 50 * The first version without modifications
Note: See TracChangeset
for help on using the changeset viewer.