퍼블리싱중 소스수정요청사항 처리
This commit is contained in:
parent
16486ac568
commit
8b7ec90b29
@ -283,7 +283,7 @@ function fn_listPops(typeDivCd) {
|
||||
<div class="inner">
|
||||
<h3 class="title"><span>온라인</span> 자료관</h3>
|
||||
<p class="desc">문화원 전자자료를 온라인으로 간편하게 열람해보세요!</p>
|
||||
<div class="more-btn"><a href="javascript:void(0)" onclick="location.href='/search/searchList.do?collection=lib_online';"><span>더보기 ></span></a></div>
|
||||
<div class="more-btn"><a href="javascript:void(0)" onclick="location.href='/search/searchList.do?collection=lib_online';"><span><span>더보기</span> <img src="/images/icon/icon-more.png" alt="더보기 아이콘"></span></a></div>
|
||||
<!-- Swiper -->
|
||||
<div class="swiper onlineSwiper">
|
||||
<div class="swiper-wrapper items cover">
|
||||
@ -326,7 +326,7 @@ function fn_listPops(typeDivCd) {
|
||||
<h2 class="blind">커뮤니티 섹션영역</h2>
|
||||
<div class="inner">
|
||||
<div class="Fl notice">
|
||||
<div class="ti"><span>공지사항</span><a href="javascript:void(0)" onclick="location.href='/bbs/listAncmnts.do';"><span>더보기 <img src="/images/icon/icon-more.png" alt="더보기 아이콘"></span></a></div>
|
||||
<div class="ti"><span>공지사항</span><a href="javascript:void(0)" onclick="location.href='/bbs/listAncmnts.do';"><span><span>더보기</span> <img src="/images/icon/icon-more.png" alt="더보기 아이콘"></span></a></div>
|
||||
<div class="con">
|
||||
<c:forEach var="itemAncmnt" items="${listAncmnt }">
|
||||
<div class="list">
|
||||
@ -342,7 +342,7 @@ function fn_listPops(typeDivCd) {
|
||||
</div>
|
||||
</div>
|
||||
<div class="Fl qna">
|
||||
<div class="ti"><span>Q&A</span><a href="javascript:void(0)" onclick="location.href='/bbs/listQnas.do';"><span>더보기 <img src="/images/icon/icon-more.png" alt="더보기 아이콘"></span></a></div>
|
||||
<div class="ti"><span>Q&A</span><a href="javascript:void(0)" onclick="location.href='/bbs/listQnas.do';"><span><span>더보기</span> <img src="/images/icon/icon-more.png" alt="더보기 아이콘"></span></a></div>
|
||||
<div class="con">
|
||||
<c:forEach var="itemQna" items="${listQna }">
|
||||
<div class="list">
|
||||
|
||||
@ -390,46 +390,58 @@ function goList(){
|
||||
|
||||
|
||||
<script>
|
||||
/* 함께 볼만한자료 슬라이드 */
|
||||
var swiper = new Swiper(".DetailSwiper1", {
|
||||
loop: true,
|
||||
slidesPerView: 4,
|
||||
spaceBetween: 30,
|
||||
centeredSlides: false,
|
||||
autoplay: {
|
||||
delay: 2500,
|
||||
disableOnInteraction: false,
|
||||
},
|
||||
navigation: {
|
||||
nextEl: ".swiper-button-next",
|
||||
prevEl: ".swiper-button-prev",
|
||||
},
|
||||
/*
|
||||
pagination: {
|
||||
el: ".swiper-pagination",
|
||||
clickable: true,
|
||||
},
|
||||
*/
|
||||
});
|
||||
/* 유사한 자료 슬라이드 */
|
||||
var swiper = new Swiper(".DetailSwiper2", {
|
||||
loop: true,
|
||||
slidesPerView: 5,
|
||||
spaceBetween: 30,
|
||||
centeredSlides: true,
|
||||
autoplay: {
|
||||
delay: 1112500,
|
||||
disableOnInteraction: false,
|
||||
},
|
||||
navigation: {
|
||||
nextEl: ".swiper-button-next",
|
||||
prevEl: ".swiper-button-prev",
|
||||
},
|
||||
/*
|
||||
pagination: {
|
||||
el: ".swiper-pagination",
|
||||
clickable: true,
|
||||
},
|
||||
*/
|
||||
});
|
||||
</script>
|
||||
var windowWidth = $(window).width();
|
||||
var _slidesPerView = 4;
|
||||
if (windowWidth < 480) {
|
||||
_slidesPerView = 1;
|
||||
}
|
||||
/* 함께 볼만한자료 슬라이드 */
|
||||
var swiper = new Swiper(".DetailSwiper1", {
|
||||
loop: true,
|
||||
slidesPerView: _slidesPerView,
|
||||
spaceBetween: 30,
|
||||
centeredSlides: false,
|
||||
autoplay: {
|
||||
delay: 2500,
|
||||
disableOnInteraction: false,
|
||||
},
|
||||
navigation: {
|
||||
nextEl: ".swiper-button-next",
|
||||
prevEl: ".swiper-button-prev",
|
||||
},
|
||||
/*
|
||||
pagination: {
|
||||
el: ".swiper-pagination",
|
||||
clickable: true,
|
||||
},
|
||||
*/
|
||||
});
|
||||
|
||||
var _slidesPerViewBottom = 5;
|
||||
var _spaceBetween = 30;
|
||||
if (windowWidth < 480) {
|
||||
_slidesPerViewBottom = 1.5;
|
||||
_spaceBetween = 20;
|
||||
}
|
||||
/* 유사한 자료 슬라이드 */
|
||||
var swiper = new Swiper(".DetailSwiper2", {
|
||||
loop: true,
|
||||
slidesPerView: _slidesPerViewBottom,
|
||||
spaceBetween: _spaceBetween,
|
||||
centeredSlides: true,
|
||||
autoplay: {
|
||||
delay: 1112500,
|
||||
disableOnInteraction: false,
|
||||
},
|
||||
navigation: {
|
||||
nextEl: ".swiper-button-next",
|
||||
prevEl: ".swiper-button-prev",
|
||||
},
|
||||
/*
|
||||
pagination: {
|
||||
el: ".swiper-pagination",
|
||||
clickable: true,
|
||||
},
|
||||
*/
|
||||
});
|
||||
</script>
|
||||
Loading…
Reference in New Issue
Block a user