Page 2 of 2 FirstFirst 12
Results 11 to 14 of 14

Thread: Padding list

  1. #11
    Join Date
    Dec 2008
    Posts
    35
    Thanks
    3
    Thanked 1 Time in 1 Post

    Default

    There are a difference:

    Code:
                element.addEvent('mouseleave', function(){
                    fx.start({
                        'margin-left': 0,
                        'background': 'url(http://www.saynogo.com/images/tabs.jpg) no-repeat top left',
                    });
    Code:
                element.addEvent('mouseleave', function(){
                    fx.start({
                        'margin-left': 0,
                        'background': 'url(http://www.saynogo.com/images/tabs.jpg) no-repeat top right',
                    });

  2. #12
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    If that is all you want to do, you can accomplish that with css:
    Code:
        #idList {
            margin: 0;
            padding: 0;
        } #idList li {
            display: block;
            margin: 0;
            padding: 4px;
            width: 120px;
            background: #333;
            color: #888;
            background: url(http://www.saynogo.com/images/tabs.jpg) right;
        } #idList li:hover {
            background-position: left;
        }

  3. #13
    Join Date
    Dec 2008
    Posts
    35
    Thanks
    3
    Thanked 1 Time in 1 Post

    Default

    Yes that's what i want but i wolud like to add the fade effect on hover.

  4. #14
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    I don't think MooTools can do that, you might have to find a plugin. Google "mootools plugings", here are a few sites I found:
    http://www.katodivaihe.com/index.php/mootools-plugins/
    http://www.visual-blast.com/javascript/mootools-plugins-accordion-menu-rounded-corners-slideshow/

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •