Jquery fade-in fade-out effect to main menu mouse hover

Home Forums Projects Jquery fade-in fade-out effect to main menu mouse hover

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #3720
    Anonymous
    Inactive

    Hello Bryan Sir
    I am working on project http://rightwaytutors.in/ using Grounwork theme of WorPress. My client want jquery fade-in fade-out effect to main menu mouse hover.

    Any idea kindly suggest me..

    Regards
    Parth Ranjan

    #3723
    Bryan Hadaway
    Keymaster

    Actually, we can get away with this more easily using CSS3.

    #menu nav ul li a {
      transition: opacity 0.25s ease-in-out 0s;
    }
    
    #menu nav ul li a:hover {
      opacity: 0.5;
    }

    That’s the gist of it and you can change up the settings from there.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.