이 글의 예시에서는 JQuery를 이용해 마우스를 움직일 때 그림의 설명 레이어를 표시하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
JQuery 이징 애니메이션과 함께 사용할 수 있습니다.
주요 코드는 다음과 같습니다.
$(".item").hover( function() { //$(this).children("img").stop().animate({opacity: 0.8}, 700, "easeInSine"); $(this).children("div.title").stop().animate({top: 0}, 700, "easeOutBounce"); $(this).children("div.desc").stop().animate({bottom: 0}, 700, "easeOutBounce"); }, function(){ //$(this).children("img").stop().animate({opacity: 1}, 700); $(this).children("div.title").stop().animate({top: -60}, 500); $(this).children("div.desc").stop().animate({bottom: -40}, 400); } );
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.