|
|
@@ -2589,6 +2589,7 @@
|
|
|
var togetherItemSwiper = new Swiper('.pd .pd_together .area_slider .swiper-container', {
|
|
|
slidesPerView: 3,
|
|
|
spaceBetween: 8,
|
|
|
+ speed: 1000,
|
|
|
});
|
|
|
|
|
|
//슬라이드 - 베스트리뷰
|
|
|
@@ -2597,6 +2598,7 @@
|
|
|
observeParents: true,
|
|
|
slidesPerView: 1,
|
|
|
spaceBetween: 8,
|
|
|
+ speed: 1000,
|
|
|
//loop: true,
|
|
|
pagination: {
|
|
|
el: '.swiper-pagination',
|
|
|
@@ -2607,6 +2609,7 @@
|
|
|
//슬라이드 - 제품사진
|
|
|
var thumbswiper = new Swiper('.pd .thumb_box .area_slider .swiper-container', {
|
|
|
slidesPerView:1,
|
|
|
+ speed: 1000,
|
|
|
pagination: {
|
|
|
el: '.swiper-pagination',
|
|
|
type: 'fraction',
|
|
|
@@ -2618,6 +2621,7 @@
|
|
|
var rcmdPicimgSwiper = new Swiper('.pd .pd_recommend .area_slider.pic_img .swiper-container', {
|
|
|
slidesPerView: 1,
|
|
|
spaceBetween: 0,
|
|
|
+ speed: 1000,
|
|
|
pagination: {
|
|
|
el: '.swiper-pagination',
|
|
|
type: 'fraction',
|
|
|
@@ -2628,6 +2632,7 @@
|
|
|
observeParents: true,
|
|
|
slidesPerView: 3,
|
|
|
spaceBetween: 8,
|
|
|
+ speed: 1000,
|
|
|
});
|
|
|
|
|
|
$(".pic_list > div").hide();
|
|
|
@@ -2643,6 +2648,7 @@
|
|
|
observer: true,
|
|
|
observeParents: true,
|
|
|
slidesPerView: 1,
|
|
|
+ speed: 1000,
|
|
|
pagination: {
|
|
|
el: '.swiper-pagination',
|
|
|
type: 'fraction',
|
|
|
@@ -2654,6 +2660,7 @@
|
|
|
observer: true,
|
|
|
observeParents: true,
|
|
|
slidesPerView: 1,
|
|
|
+ speed: 1000,
|
|
|
pagination: {
|
|
|
el: '.swiper-pagination',
|
|
|
type: 'fraction',
|
|
|
@@ -2987,8 +2994,37 @@
|
|
|
|
|
|
};
|
|
|
}
|
|
|
-
|
|
|
|
|
|
+ // 210407_스크롤감지 헤더 그림자
|
|
|
+ $('.pd_delivery_pop').scroll(function(){
|
|
|
+ $(".pd_delivery_pop .modal-header").css("box-shadow", "rgb(0 0 0 / 20%) 0px 0px 5px");
|
|
|
+ $(".pd_delivery_pop .modal-header").css("border-bottom", "0px none");
|
|
|
+ if($(".pd_delivery_pop").scrollTop() === 0){
|
|
|
+ $(".pd_delivery_pop .modal-header").css("box-shadow", "none");
|
|
|
+ $(".pd_delivery_pop .modal-header").css("border-bottom", "1px solid #eee");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ $('.pd_review_pop').scroll(function(){
|
|
|
+ $(".pd_review_pop .modal-header").css("box-shadow", "rgb(0 0 0 / 20%) 0px 0px 5px");
|
|
|
+ $(".pd_review_pop .modal-header").css("border-bottom", "0px none");
|
|
|
+ if($(".pd_review_pop").scrollTop() === 0){
|
|
|
+ $(".pd_review_pop .modal-header").css("box-shadow", "none");
|
|
|
+ $(".pd_review_pop .modal-header").css("border-bottom", "1px solid #eee");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ $('.pd_qnalist_pop').scroll(function(){
|
|
|
+ $(".pd_qnalist_pop .modal-header").css("box-shadow", "rgb(0 0 0 / 20%) 0px 0px 5px");
|
|
|
+ $(".pd_qnalist_pop .modal-header").css("border-bottom", "0px none");
|
|
|
+ if($(".pd_qnalist_pop").scrollTop() === 0){
|
|
|
+ $(".pd_qnalist_pop .modal-header").css("box-shadow", "none");
|
|
|
+ $(".pd_qnalist_pop .modal-header").css("border-bottom", "1px solid #eee");
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ window.onscroll = function() {
|
|
|
+ document.getElementsByClassName('.modal.pd_pop.pd_review_pop .pd_review .area_rv_empty .btn_group_flex').style.top =
|
|
|
+ window.pageYOffset + 'px';
|
|
|
+ };
|
|
|
/*]]>*/
|
|
|
</script>
|
|
|
|