function alertMessage() { alert('로그인이 필요한 페이지 입니다.'); location.href = 'https://www.medicaltimes.com/Main/Member/login_for_mediseminar.html?returnAddr=//www.mediseminar.com/index.html'; } function LiveShow() { $.ajax({ url: '/Ajax/getLivePopWrap.php', type: 'POST', success: function(result) { $('.livePOP_cont_wrap').html(result); } }); $('.livePOPWrap').fadeIn(200); } $(function() { /*live popup*/ //$('.webLive').on('click', function() { // $('.livePOPWrap').fadeIn(200); //}); $('.livePOP_X, .livePOP_mainTit').on('click', function() { $('.livePOPWrap').fadeOut(200); }); $(document).on('mouseup', function(e) { if ($('.livePOPWrap').has(e.target).length == 0) { $('.livePOPWrap').fadeOut(200); } }); /*notice popup*/ $('.notice_li').on('click', function() { //몇번째 ID인지 알아내서, Ajax로 가져온뒤, 뿌려준다. var NoticeID = $(this).attr('data'); $.ajax({ url: '/Ajax/getNoticeContents.php', data: { ID: NoticeID }, type: 'POST', success: function(result) { $('.noticePOPWrap').html(result); } }); $('.noticePOPWrap').fadeIn(200); }); $(document).on('mouseup', function(e) { if ($('.noticePOPWrap').has(e.target).length == 0) { $('.noticePOPWrap').fadeOut(200); } }); /*about popup*/ //$('.sche_more').on('click', function() { // $('.monthPOPWrap').fadeIn(200); //}); //function ShowSch() // { // $(".m_sche_table_wrap").find('.monthPOPWrap_'+$(this).attr('data')).fadeIn(200); // } //$('.sche_more').on('click', function() { // $(".m_sche_table_wrap").find('.monthPOPWrap_'+$(this).attr('data')).fadeIn(200); //}); // $('.monthPOP_X, .monthList a').on('click', function() { // //$('.monthPOPWrap').fadeOut(200); // $(".MonthView").find('.monthPOPWrap').fadeOut(200); // }); $(document).on('mouseup', function(e) { if ($('.monthPOPWrap').has(e.target).length == 0) { $('.monthPOPWrap').fadeOut(200); } }); /*about popup*/ $('.videoSample').on('click', function() { $('.aboutPOPWrap').fadeIn(200); }); $('.aboutPOP_X').on('click', function() { $('.aboutPOPWrap').fadeOut(200); }); $(document).on('mouseup', function(e) { if ($('.aboutPOPWrap').has(e.target).length == 0) { $('.aboutPOPWrap').fadeOut(200); } }); /*about popup*/ //$('.viewCont_wrap').find('.goBtn').on('click', function() { // $('.moreUserInfoWrap').fadeIn(200); //}); $('.moreUserInfoPOP_X').on('click', function() { $('.moreUserInfoWrap').fadeOut(200); }); $(document).on('mouseup', function(e) { if ($('.moreUserInfoWrap').has(e.target).length == 0) { $('.moreUserInfoWrap').fadeOut(200); } }); /*kv arrow*/ var windowW = ''; var posiL = ''; var posiR = ''; $(window).resize(function() { windowW = $(window).width(); console.log(windowW); }); /*listArr*/ $('.new.listArr').on('click', function() { var PageNo_webinar_next = $('.newWebi_list:first-child').attr('data'); var PageNo_webinar_prev = $('.newWebi_list:last-child').attr('data'); var szPageNo_webinar; if ($(this).hasClass('next')) { if ($('.newWebi_list').length > 1) { $('.newWebi_list_wrap').animate( { left: '-565px' }, 400, function() { $('.newWebi_list_wrap').append($('.newWebi_list:first-child')); $('.newWebi_list_wrap').css('left', 0); } ); if (PageNo_webinar_next == $('.newWebi_list').length) { szPageNo_webinar = '1'; } else { szPageNo_webinar = eval(PageNo_webinar_next) + eval(1); } $('.listArrWrap').find('.listArr_num').find('.webinar_num').text(szPageNo_webinar); } else { } } if ($(this).hasClass('prev')) { console.log($('.newWebi_list').length); console.log($('.newWebi_list').length); console.log($('.newWebi_list').length); if ($('.newWebi_list').length > 1) { $('.newWebi_list_wrap').prepend($('.newWebi_list:last-child')); $('.newWebi_list_wrap').css('left', '-565px'); $('.newWebi_list_wrap').animate( { left: 0 }, 400 ); szPageNo_webinar = eval(PageNo_webinar_prev); $('.listArrWrap').find('.listArr_num').find('.webinar_num').text(szPageNo_webinar); } else { } } }); $('.event.listArr').on('click', function() { var PageNo_event_next = $('.ingEvt_list:first-child').attr('data'); var PageNo_event_prev = $('.ingEvt_list:last-child').attr('data'); var szPageNo_event; if ($(this).hasClass('next')) { if ($('.ingEvt_list').length > 1) { $('.ingEvt_list_wrap').animate( { left: '-565px' }, 400, function() { $('.ingEvt_list_wrap').append($('.ingEvt_list:first-child')); $('.ingEvt_list_wrap').css('left', 0); } ); if (PageNo_event_next == $('.ingEvt_list').length) { szPageNo_event = '1'; } else { szPageNo_event = eval(PageNo_event_next) + eval(1); } $('.listArrWrap').find('.listArr_num').find('.num').text(szPageNo_event); } else { } } if ($(this).hasClass('prev')) { if ($('.ingEvt_list').length > 1) { $('.ingEvt_list_wrap').prepend($('.ingEvt_list:last-child')); $('.ingEvt_list_wrap').css('left', '-565px'); $('.ingEvt_list_wrap').animate( { left: 0 }, 400 ); szPageNo_event = eval(PageNo_event_prev); $('.listArrWrap').find('.listArr_num').find('.num').text(szPageNo_event); } else { } } }); /*재생 trigger*/ $('.playBtn').on('click', function() { $(this).siblings('video').trigger('play'); $(this).hide(); }); $('.video_list').on('click', function() { $('.playBtn').show(); $('.playBtn').siblings('video').trigger('pause'); }); /*schedule select*/ $('.scheSort_ym_select').on('click', function() { $(this).find('ul').toggle(); }); $(document).on('mouseup', function(e) { if ($('.scheSort_ym_select ul').has(e.target).length == 0) { $('.scheSort_ym_select ul').hide(); } }); /*searchbar select*/ $('.search_select').on('click', function() { $(this).find('.search_op').toggle(); }); $(document).on('mouseup', function(e) { if ($('.search_op').has(e.target).length == 0) { $('.search_op').hide(); } }); /*family site*/ $('.footer_select_wrap').on({ mouseenter: function() { $('.footer_selectList').show(); }, mouseleave: function() { $('.footer_selectList').hide(); } }); /*about - ????*/ $('.video_list li').on('click', function() { $('.video_list li').removeClass('on'); $(this).addClass('on'); }); /*slick*/ $('.kv_slick').slick({ slide: 'li', slidesToShow: 1, //??? ???? slidesToScroll: 1, //???? ???? autoplay: true, autoplaySpeed: 5000, arrows: true, dots: true, pauseOnHover: true, dotsClass: 'slick-dots' }); /***2020.09.23 금주의 웨비나 4단->2단으로 수정***/ $('.weekWebi_slick').slick({ slide: 'li', slidesToShow: 2, //??? ???? slidesToScroll: 1, //???? ???? autoplay: false, arrows: true }); $('.monWebi_slick').slick({ slide: 'li', slidesToShow: 4, //??? ???? slidesToScroll: 1, //???? ???? autoplay: false, arrows: true }); /*notice arrow*/ var stRoll = setInterval(noticeRoll, 4000); function noticeRoll() { $('.notice_list_wrap ul').animate( { top: '-50px' }, 400, function() { $('.notice_list_wrap ul').append($('.notice_list_wrap li:first-child')); $('.notice_list_wrap ul').css('top', 0); } ); } $('.notice_next').on('click', function() { if ($('.notice_li').length() > 1) { noticeRoll(); } else { } }); $('.notice_prev').on('click', function() { if ($('.notice_li').length() > 1) { $('.notice_list_wrap ul').prepend($('.notice_list_wrap li:last-child')); $('.notice_list_wrap ul').css('top', '-50px'); $('.notice_list_wrap ul').animate( { top: 0 }, 400 ); } else { } }); $('.noticeWrap').on({ mouseenter: function() { clearInterval(stRoll); }, mouseleave: function() { stRoll = setInterval(noticeRoll, 4000); } }); $('.eventgoBtn').on('click', function() { EventID = $('.EventForm').find('.ID').val(); UserID = $('.EventForm').find('.UserID').val(); if (UserID != '') { var szURL = '/Ajax/goEventenjoy.php'; $.ajax({ url: szURL, data: { UserID: UserID, EventID: EventID }, type: 'POST', dataType: 'json', success: function(result) { //console.log(result.LIST); if (result.type == 'OK') { alert('이벤트 참여가 완료되었습니다.'); } else { alert('이미 참여한 이벤트 입니다.'); } }, error: function(result) { console.log(result.LIST); alert('서비스 오류가 발생했습니다. 페이지를 새로고침 해 주세요!'); } }); } else { var ReturnAddr = encodeURIComponent('http://www.mediseminar.com/Event/event.html?mode=View&ID=' + EventID); alert('로그인이 필요합니다.'); location.href = 'http://www.medicaltimes.com/Users/Member/Login.html?returnAddr=' + ReturnAddr; } }); //라이브 시간일때는 바로 웨비나 페이지로 보낸다. $('.EnterWebinar').on('click', function() { var WebinarUrl = $(this).attr('data'); location.href = WebinarUrl; }); });