clearQueue(3)
-
jQuery 아코디언 갤러리 (컬랩스)
JS $(document).ready(function(){ /* 자동기능.... var timeonoff; var imageCount=4; var cnt=1; function move_gallery(){ cnt++; if(cnt==1){ $('.eventSlideMenu .img02').animate({left:350},450).clearQueue(); $('.eventSlideMenu .img03').animate({left:400},450).clearQueue(); $('.eventSlideMenu .img04').animate({left:450},450).clearQueue(); }else if(cnt==2){ $('.eventSlideMenu .img02').animate({left:50},450..
2021.12.15
-
jQuery animate caption
, this .clearQueue(); CSS /* CSS Document */ *{margin:0; padding:0} /* boxgrid Jquery*/ .boxgrid{width: 287px; height: 125px; overflow: hidden; position: relative; margin:20px} .boxgrid img{position: absolute; top: 0; left: 0; border: 0;} .boxgrid dt{padding:5px 10px; color:#fff; font-weight:bold;font-family:arial; font-size:0.923em} .boxgrid dd{padding:10px 0 0 10px;color:#fff;font-size:0.846em..
2021.12.08
-
jQuery animate hover slide
CSS transition으로도 구현할 수 있지만, jQuery로 구현하면 easing효과도 사용할 수 있다. stop() * animate의 계산을 멈춰준다. * animate hover효과 시 stop() 메소드를 꼭 써줘야 한다. * stop을 써주지 않으면 마우스 hover한 횟수 만큼 animate가 멈추지 않고 실행된다. * 또는 clearQueue를 사용해준다. (이게 더 좋음) clearQueue(); * animate의 계산을 취소/삭제 한다. * stop은 단순히 멈추게 해주는것이고, clearQueue는 큐(저장공간)를 삭제시켜준다. (훨씬 좋다) 예제 :)
2021.12.08