코딩 기록/코딩 소스 [HTML & CSS & JS]
(HTML, CSS, jQuery) 슬라이더 기초 개념 2 [좌우 + 버튼식 슬라이드]
See the Pen 좌우 슬라이더 + 버튼식 by kimyangsun (@kimyangsun) on CodePen. 좌우 이동 슬라이더와 중앙 하단 버튼식 슬라이더를 섞어놓은 기초 개념입니다. // 기존 버튼형 슬라이더 $('.slider-1 > .page-btns > div').click(function(){ var $this = $(this); var index = $this.index(); $this.addClass('active'); $this.siblings('.active').removeClass('active'); var $slider = $this.parent().parent(); var $current = $slider.find(' > .slides > div.active'); var ..
2020. 1. 5.