jQuery 썸네일형 리스트형 태그의 class가 바뀌는 것을 catch하여 css 나 기타 내용을 변경하는 경우 12345678910 $(window).on("scroll",function() { if ($("#1stS").hasClass("on")===true) { $("#albumCover").css({"background-image": "url(img/happinessalbum.jpg)"}) } else if ($("#2ndS").hasClass("on")===true) { $("#albumCover").css({"background-image": "url(img/benaturalalbum.jpg)"}) } else if ($("#1stM").hasClass("on")===true) { $("#albumCover").css({"background-image": "url(img/icecreamcake1.jpg).. 더보기 jQuery 구문 몇 개 정리 아래 내용은 인터랙티브 웹디자인북 (최성일 저) 에서 나온 내용을 발췌하여 정리한 것이다. 1. $("선택할 요소") 선택하고 싶은 요소를 넣는다. ex) $("ul li").css({"color":"blue"})$(".red").css({"color":"red"}) 2. animate() 구문은 앞에 stop(). 구문이 와야 한다. 필수는 아니지만 stop() 구문이 없으면 모션이 중첩하여 실행되기 때문에 모션 당시의 animate()만 실행하려면 앞에 stop() 구문이 있어야 한다. ex) $("div").on("mouseenter", function() {$("div").stop().animate({"width":"500px", "height":"500px"},800,"easeOutBounce".. 더보기 이전 1 다음