$(document).ready(function(){ 


//Set the anchor link opacity to 0 and begin hover function

$("ul#nav li a").css({"opacity" : 0}).hover(function(){ 


//Fade to an opacity of 1 at a speed of 200ms

$(this).stop().animate({"opacity" : 1}, 200); 

//On mouse-off

}, function(){


//Fade to an opacity of 0 at a speed of 100ms

$(this).stop().animate({"opacity" : 0}, 100); 

});

});

'html5/jQuery' 카테고리의 다른 글

one page scroll navi  (0) 2014.11.28
스크롤 주르륵 넘기기  (0) 2014.11.27
가로 슬라이더  (0) 2014.11.25
심플 이미지 슬라이더  (0) 2014.11.22
펼침메뉴 animate  (0) 2014.11.21