$(document).ready(function(){
$("#introWrap a").each(function(){
$(this).on("mouseenter", function() {
$(this).css("z-index","2");
$(this).stop(true).animate({width:"100%"}, 500);
}).on("mouseleave", function() {
$(this).stop(true).animate({width:"50%"}, 500)
.queue(function(){
$(this).css("z-index","1")
});
})
});
})
'jquery' 카테고리의 다른 글
jQuery migrate 에러 : jQuery.fn.on() is deprecated (0) | 2021.04.27 |
---|---|
$.ajax 와 $.post (0) | 2020.08.13 |
checkbox 전체 선택 / 개별 해제시 전체 해제 (0) | 2020.06.17 |
반응형 a 태그 href #로 바꾸고 pc에서는 link 걸기 (0) | 2020.06.11 |
[bxslider.js] li가 1개일 때 selector 제거 (0) | 2020.06.03 |
댓글