[js]
var idx = idx2 = 0;
function shutterMotion(){
var shutterCount = $(".shutter").length;
idx2 = (idx + 1) % shutterCount;
$("shutter").hide();
$("shutter:eq("+idx2+")").show();
idx = idx2;
$(".top").finish().animate({"top":"0"}).animate({"top":"-50vh"});
$(".btm").finish().animate({"bottom":"0"}).animate({"bottom":"-50vh"});
}
See the Pen shutter motion slider by seobin (@lullu-lalla) on CodePen.
크롬 로컬에서 ajax 테스트하기 (0) | 2018.06.04 |
---|---|
[부모태그로 이벤트 전파 중지 | 활용] event.stopPropagation() - 차트(tree구조) (0) | 2018.04.13 |
[부모태그로의 이벤트 전파 중지] event.stopPropagation() (0) | 2018.04.13 |
[ skrollr+fullpage | 스크롤 기반 애니메이션 | "data-anchor-target" test 2 ] (0) | 2018.01.19 |
[ skrollr | 스크롤 기반 애니메이션 | "data-anchor-target" test ] (0) | 2018.01.19 |
댓글 영역