(function($) { // ========================================================== // 設定 popup 存在時,body 的呈現方式 // ========================================================== function stepCheck() { $('#popupShowBox').css('display', 'flex') } // ========================================================== // 關閉 popup // ========================================================== function closePopup() { $('#popupShowBox').animate({ opacity: 0 }, 500).remove() var url = '/ajax/ajax_pop_show_box-p.php'; $.post(url, {type: 'close'}, type='success' , 'html'); } // ========================================================== // init body style // ========================================================== stepCheck(); // ========================================================== // 點選 X 關閉 // ========================================================== $('.popup-show-closer').on('click', function(e) { closePopup(); }) // ========================================================== // 點選外部空間關閉 // ========================================================== $('#popupShowBox').on('click', function(e) { if(e.currentTarget === e.target) { closePopup(); } }) // ========================================================== // 特定秒束後會自動關閉 // ========================================================== //window.setTimeout(closePopup, 8000)//預設8000 // ========================================================== // 首頁紅眼廣告輪播 // ========================================================== if($("#slideshow .slide-item").length>=1){ $("#slideshow").owlCarousel({ loop : true, items : 1, nav : false, navText : ['',''], dots:true, autoplay:true, animateOut:'fadeOut', autoplayTimeout:9500, }); } })($);