Results 1 to 4 of 4

Thread: Marquee problem! it stopped why? :(

  1. #1
    Join Date
    Sep 2006
    Posts
    11
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Marquee problem! it stopped why? :(

    Hello,
    I have a marquee , see the following code:
    HTML Code:
    <marquee behavior = "scroll" direction = "right" scrollamount="5" onmouseover="this.stop()" onmouseout="this.start()>
    Hello World!
    </marquee >
    and i have custimize CSS Menu, see the following code:

    HTML Code:
    /* Main Menu */
    .bevelmenu{
    list-style-type: none;
    margin: 0;
    padding: 3px 5px;
    width: 100px;
    }
    
    .bevelmenu li a{
    display: block;
    width: 122px;;
    padding: 3px 5px;
    text-decoration: none;
    font-weight: bold;
    background-color: #FDF2DF;
    border: 2px solid #FDF2DF;
    text-decoration:none;
    }
    
    .bevelmenu li a:hover{
    color: black;
    background-color: #FFD58F;
    border-style: outset;
    
    }
    
    html>body .bevelmenu li a:active{ /* Apply mousedown effect (non IE browsers only) */
    border-style: inset;
    
    }
    menu build:
    HTML Code:
    <ul class="bevelmenu">
    <li><a href="info.py?id=1">Main information...</a></li>
    </div>
    test now! if you moved a mouse cursor on the menu the marquee will be stopped and hidden!
    any idea about it?

    Thanks,

  2. #2
    Join Date
    Sep 2005
    Posts
    882
    Thanks
    0
    Thanked 3 Times in 3 Posts

    Default

    marquee is a non-standard tag and should be avoided.

  3. #3
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by blm126
    marquee is a non-standard tag and should be avoided.
    Continuous movement in general should be avoided: it's distracting. It also makes content annoying to read because should any of it be missed, the user has to wait for that content to reappear; a complete waste of their time.

    Mike

  4. #4
    Join Date
    Sep 2006
    Posts
    11
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default what's it??!!

    any idea??
    please help

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
  •