작성
·
233
0
function motion() { //스크롤할때마다 작동할 함수
setProperty();
changeBg();
parallaxMove();
}
function init() {
motion()
};
$(window).scroll(function(e) {
motion();
});
init();
//이런식으로 함수끼리 연결?하는방식으로 하셨는데
$(window).scroll(function(e) {
setProperty();
changeBg();
parallaxMove();
});
/**
이런식으로 해도 작동이되는거같아서
왜 함수를 스크롤함수,init함수,motion함수
각각 만들어서 연결하는방식으로 하신이유가있을까요?
*/
답변 1
1