Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $(".flex-container.home ul.flex-direction-nav").hide();
  2. $(".flex-container.home .flexslider").hover(
  3. function(){
  4. $(".flex-container.home ul.flex-direction-nav").fadeIn();
  5. },
  6. function(){
  7. $(".flex-container.home ul.flex-direction-nav").fadeOut();
  8. }
  9. )
  10.  
  11. $(document).ready(function () {
  12. $(".flex-container.home ul.flex-direction-nav").hide();
  13. $(".flex-container.home").hover(function () {
  14. $(" ul.flex-direction-nav").fadeToggle();
  15. });
  16. });
  17.  
  18. pauseOnHover:true, //this option working good
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement