Javascript/jQuery 9

scroller Trigger 사용법 참고페이지

https://zzzmh.tistory.com/18 GreenSock 플러그인 ScrollTrigger 사용법 요즘처럼 html5+, css3+, jquery가 생기기전에는 웹사이트에 모션을 구현해내기 위해 한번쯤 사용해봤을 라이브러리가 바로 지금은 기억에서 흐릿해진 트윈맥스(TweenMax)이다. css와 jquery로 만들어낼수 zzzmh.tistory.com https://webty.tistory.com/117 scrollTrigger JS Plugin scrollTrigger란? css 및 javascript를 활용하여 스크롤 동작 및 기타 다양한 svg 애니메이션을 제작할 수 있게 도와주는 플러그인입니다. CDN 연결방법 https://greensock.com/docs/v3/Installatio..

Javascript/jQuery 2022.11.24

svg 애니메이션 적용하기 [html/css/js/jquery]

* 적용방법: 일러스트 프로그램에서 저장방식을 svg로 저장 -> 코드 복사해서 붙여 넣기. * 주의 일러스트 프로그램이 한국어패치가 되어있다면 html lang="ko"로 바꿔주어야 인식이 된다. 참고 https://chpofo.tistory.com/47 HTML에 SVG 파일 추가하여 움직이는 애니메이션 구현 오랜만에 포트폴리오 포스팅을 하네요 :) 오늘은 저의 두번째 포트폴리오 메인에 사용된 디자인을 같이 구현해볼까합니다. 먼저 한번 완성작을 같이 보시죠 해당 완성작은 웹페이지에서 작동하 chpofo.tistory.com

Javascript/jQuery 2022.11.23

마우스 휠 좌우 스크롤

https://aosceno.tistory.com/543 참고 (JS)wheel로 가로 스크롤 및 scroll indicator 만들기 참고 사이트 : http://www.lxinternational.com/ LX International LX International www.lxinternational.com HTML 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 스크롤 실험 - LX인터내셔널 HELLO lorem lor aosceno.tistory.com https://bokartstudio.tistory.com/35 [제이쿼리] 01. 마우스 휠 아래로 내릴 때 가로 스크롤 100% 적..

Javascript/jQuery 2022.11.22

$(window).on("scroll resize", function(){..}); & 콜백함수

1. 콜백함수(callback) 나중에 호출되는 함수. 특정 이벤트 발생시, 혹은 특정 시점에 도달했을 시에 시스템에서 호출하는 함수이다. /*jquery*/ $(document).on('click', 'a[href="#"]', function(e){ e.preventDefault(); }); 위 코드는 문서에서 href 속성값이 #인 a태그를 클릭'할 때마다' 다음과 같은 함수를 호출하겠다는 의미이다. 이 경우 function은 콜백함수가 된다. //Javascript window.addEventListener('resize', function(){ console.log('resize event!'); if (window.innerWidth

Javascript/jQuery 2022.11.03

swiper plugin/ parallax plugin / triger 참고자료

https://shadesign.tistory.com/2 swiper-slide 총정리(사용법 / 적용 / 옵션) 1. 스와이퍼 슬라이드 사이트 접속 https://swiperjs.com/ Swiper - The Most Modern Mobile Touch Slider Swiper is the most modern free mobile touch slider with hardware accelerated transitions and amazing native behavior. swiperj shadesign.tistory.com https://swiperjs.com/demos#effect-cards Swiper Demos Swiper is the most modern free m..

Javascript/jQuery 2022.11.03