stop(2)
-
jQuery main slide fade ps lr
CSS @charset "utf-8"; /* CSS Document */ *{margin:0; padding:0;} img{border:0; vertical-align:top;} ul, li{list-style:none;} .main{position:relative; width:1000px; height:420px; border:1px solid red; overflow:hidden} .main .gallery{position:relative; left:0; top:0; width:1000px; height:380px; overflow:hidden;} .main .gallery li{display:none} .main .dock{width:330px; position:absolute; left:450px..
2021.12.13
-
jQuery animate hover slide
CSS transition으로도 구현할 수 있지만, jQuery로 구현하면 easing효과도 사용할 수 있다. stop() * animate의 계산을 멈춰준다. * animate hover효과 시 stop() 메소드를 꼭 써줘야 한다. * stop을 써주지 않으면 마우스 hover한 횟수 만큼 animate가 멈추지 않고 실행된다. * 또는 clearQueue를 사용해준다. (이게 더 좋음) clearQueue(); * animate의 계산을 취소/삭제 한다. * stop은 단순히 멈추게 해주는것이고, clearQueue는 큐(저장공간)를 삭제시켜준다. (훨씬 좋다) 예제 :)
2021.12.08