$(document).ready(function () {
/*slick 공통*/
$('.pause').click(function () {
$(this).siblings('div').slick('slickPause');
$(this).siblings('ul').slick('slickPause');
$(this).hide();
$(this).siblings('.play').show();
});
$('.play').click(function () {
$(this).siblings('div').slick('slickPlay');
$(this).siblings('ul').slick('slickPlay');
$(this).hide();
$(this).siblings('.pause').show();
});
/*알림창*/
$('.popup_li').slick({
//rows:2,
//slidesPerRow:2,
slidesToShow: 5,
arrows: true,
autoplay: true,
autoplaySpeed: 5000,
responsive: [
{
breakpoint: 1000,
settings: {
slidesToShow: 3,
},
},
{
breakpoint: 700,
settings: {
slidesToShow: 2,
},
},
{
breakpoint: 490, //화면 사이즈 960px
settings: {
slidesToShow: 1,
centerMode: true,
focusOnSelect: true,
centerPadding: '80px',
},
},
],
});
});
$(function () {
$('.formmail_cell_bgcolor>table>tbody>tr:first-child>td:first-child').click(
function () {
$(
'.formmail_cell_bgcolor>table>tbody>tr:nth-child(2)>td'
).slideToggle(500);
$(
'.formmail_cell_bgcolor>table>tbody>tr:first-child>td:last-child'
).slideToggle(1200);
}
);
$('.bullet1').click(function () {
$('.news_wrap>.swiper>.swiper-wrapper').css(
'transform',
'translate3d(0px,0,0)'
);
$(this).siblings().removeClass('active');
$(this).addClass('active');
return;
});
$('.bullet2').click(function () {
$('.news_wrap>.swiper>.swiper-wrapper').css(
'transform',
'translate3d(-1484px,0,0)'
);
$(this).siblings().removeClass('active');
$(this).addClass('active');
return;
});
$('.bullet3').click(function () {
$('.news_wrap>.swiper>.swiper-wrapper').css(
'transform',
'translate3d(-2964px,0,0)'
);
$(this).siblings().removeClass('active');
$(this).addClass('active');
});
$('.bullet4').click(function () {
$('.news_wrap>.swiper>.swiper-wrapper').css(
'transform',
'translate3d(-4446px,0,0)'
);
$(this).siblings().removeClass('active');
$(this).addClass('active');
});
$('.bullet5').click(function () {
$('.news_wrap>.swiper>.swiper-wrapper').css(
'transform',
'translate3d(-5928px,0,0)'
);
$(this).siblings().removeClass('active');
$(this).addClass('active');
});
$(
'body > div.fade > div.m_board.floatBox > table > tbody > tr > td > table > tbody > tr:nth-child(6) > td > table > tbody > tr:nth-child(2) > td > textarea'
).scroll(function () {
var scrT = $(this).scrollTop();
console.log(scrT);
if (scrT >= 85) {
$('.Btn .Btn_a > input').addClass('active');
} else {
$('.Btn .Btn_a > input').removeClass('active');
}
});
});
$(document).ready(function () {
$('.board_output_3_tr').addClass('swiper-slide');
$('.news table > tbody > tr > td > table').addClass('swiper');
// $( '.news table > tbody > tr > td > table' ).addClass( 'newsSwiper' );
$('.news table > tbody > tr > td > table > tbody').addClass(
'swiper-wrapper'
);
});
// slick 파괴
$('#slider-div').slick('unslick');
$(function () {
$('#slider-div').slick({
slide: 'div', //슬라이드 되어야 할 태그 ex) div, li
infinite: true, //무한 반복 옵션
slidesToShow: 3, // 한 화면에 보여질 컨텐츠 개수
slidesToScroll: 1, //스크롤 한번에 움직일 컨텐츠 개수
speed: 20000, // 다음 버튼 누르고 다음 화면 뜨는데까지 걸리는 시간(ms)
arrows: false, // 옆으로 이동하는 화살표 표시 여부
dots: false, // 스크롤바 아래 점으로 페이지네이션 여부
autoplay: true, // 자동 스크롤 사용 여부
autoplaySpeed: 1, // 자동 스크롤 시 다음으로 넘어가는데 걸리는 시간 (ms)
pauseOnHover: false, // 슬라이드 이동 시 마우스 호버하면 슬라이더 멈추게 설정
vertical: false, // 세로 방향 슬라이드 옵션
prevArrow: "", // 이전 화살표 모양 설정
nextArrow: "", // 다음 화살표 모양 설정
dotsClass: 'slick-dots', //아래 나오는 페이지네이션(점) css class 지정
draggable: true, //드래그 가능 여부
centerMode: true,
centerPadding: '0px',
cssEase: 'linear',
responsive: [
// 반응형 웹 구현 옵션
{
breakpoint: 960, //화면 사이즈 960px
settings: {
//위에 옵션이 디폴트 , 여기에 추가하면 그걸로 변경
arrows: false,
slidesToShow: 2,
},
},
{
breakpoint: 768, //화면 사이즈 768px
settings: {
//위에 옵션이 디폴트 , 여기에 추가하면 그걸로 변경
arrows: false,
slidesToShow: 1,
},
},
],
});
});