Plugin Directory

Changeset 927777


Ignore:
Timestamp:
06/06/2014 02:30:08 PM (12 years ago)
Author:
lsobral
Message:

The area of the mouseover was restricted to the visible space, usually the icon.

Location:
larbous-floating-menu/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • larbous-floating-menu/trunk/larbous-floating-menu.php

    r921629 r927777  
    44Plugin URI: http://larbo.us/plugins/larbous-floating-menu
    55Description: This plugin creates a fixed floating menu at left position. Set the options in Settings/Floating Menu
    6 Version: 1.0
     6Version: 1.1
    77Author: Luiz Sobral
    88Author URI: http://luizsobral.com.br
     
    234234    jq( document ).ready(function() {
    235235        jq(function() {
    236        
    237236            jq('#lbfm-navigation > li').hover(
    238237                function () {
    239                     jq('a',jq(this)).stop().animate({'marginLeft':'-2px'},200);
     238                    jq(this).stop().animate({'marginLeft':'-2px'},200);
    240239                }, 
    241240                function () {
    242                     jq('a',jq(this)).stop().animate({'marginLeft':'".$li_margin."px'},200);
     241                    jq(this).stop().animate({'marginLeft':'".$li_margin."px'},200);
    243242                }
    244243            );
  • larbous-floating-menu/trunk/readme.txt

    r921736 r927777  
    1515
    1616You 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
    2120
    2221Set the options in Settings / Larbous Floating Menu
     
    2625
    27261. 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 WordPress
     272. Activate the plugin through the \'Plugins\' menu in WordPress
    29283. Upload to media library your icons with size 48x48 or similar
    30294. 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\\\"
     305. Create options like \"Option Item \"
     316. Save with any name. This plugin assumes as default the name \"Larbous Floating Menu\"
    3332
    3433
     
    4544
    4645== Changelog ==
     46= 1.1 =
     47The area of the mouseover was restricted to the visible space, usually the icon.
     48
    4749= 1.0 =
    4850* The first version without modifications
Note: See TracChangeset for help on using the changeset viewer.