Merge branch 'master' of http://docs.nculture.org:30000/nculture/iams.nlib
This commit is contained in:
commit
643021ec11
@ -443,10 +443,10 @@ function fn_listPops(typeDivCd) {
|
||||
|
||||
/* 문화원s pick */
|
||||
var swiper = new Swiper('.pickSwiper', {
|
||||
loop : true,
|
||||
loop : false,
|
||||
slidesPerView : _slidesPerView,
|
||||
spaceBetween : _spaceBetween,
|
||||
centeredSlides : true,
|
||||
centeredSlides : false,
|
||||
autoplay : {
|
||||
delay : 2500,
|
||||
disableOnInteraction : false,
|
||||
|
||||
@ -442,10 +442,10 @@ function goList(){
|
||||
|
||||
/* 유사한 자료 슬라이드 */
|
||||
var swiper = new Swiper('.DetailSwiper2', {
|
||||
loop: true,
|
||||
loop: false,
|
||||
slidesPerView: _slidesPerViewBottom,
|
||||
spaceBetween: _spaceBetween,
|
||||
centeredSlides: true,
|
||||
centeredSlides: false,
|
||||
autoplay: {
|
||||
delay: 2500,
|
||||
disableOnInteraction: false,
|
||||
|
||||
@ -276,7 +276,7 @@ transition: all 0.2s ease-in-out;
|
||||
.sec6 .onlineSwiper {padding:5px 0px;}
|
||||
.sec6 .onlineSwiper::before {content: '';width:4%;height:120%;background: #fff;display: inline-block;position: absolute;left:0px;top:-10%;z-index: 9;box-shadow:30px 0px 30px rgba(255,255,255,1.0);}
|
||||
.sec6 .onlineSwiper::after {content: '';width:4%;height:120%;background: #fff;display: inline-block;position: absolute;right:0px;top:-10%;z-index: 9;box-shadow:-30px 0px 30px rgba(255,255,255,1.0);}
|
||||
.sec6 .onlineSwiper .swiper-slide {height:auto;background: #ccc;border-radius:10px;box-shadow:1px 1px 5px rgba(0,0,0,0.3);}
|
||||
.sec6 .onlineSwiper .swiper-slide {height:auto;border-radius:10px;/*background: #ccc;box-shadow:1px 1px 5px rgba(0,0,0,0.3);*/}
|
||||
.sec6 .onlineSwiper .items.cover {}
|
||||
.sec6 .onlineSwiper .items.cover:after {clear:both;content:'';display:block;}
|
||||
.sec6 .onlineSwiper .items.cover .List {box-sizing:content-box;height:100%;}
|
||||
@ -1072,6 +1072,7 @@ transform: rotate(45deg);}
|
||||
.myinfo .contents .concern-data .list-box .list .thum {text-align: center;padding:25px 0px;border-bottom:1px solid #ddd;}
|
||||
.myinfo .contents .concern-data .list-box .list .text {padding:15px 30px;}
|
||||
.myinfo .contents .concern-data .list-box .list .text .ti {font-size:18px;font-weight: 500;min-height:60px;overflow: hidden;margin-bottom:5px;}
|
||||
.myinfo .contents .concern-data .list-box .list .text .ti a {display:inline-block;width:100%;height:55px;overflow: hidden;text-overflow: ellipsis;position: relative;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
|
||||
.myinfo .contents .concern-data .list-box .list .text .cl {font-size:12px;color:#777;}
|
||||
.myinfo .contents .concern-data .list-box .list .text .cl p {margin-bottom:2px;}
|
||||
.myinfo .contents .concern-data .list-box .list .text .cl p span:nth-of-type(1) {font-weight: 500;margin-right:10px;}
|
||||
|
||||
@ -957,6 +957,7 @@ footer .family_site {right:10px;}
|
||||
.myinfo .contents .list-wrap .list-box .list { position: relative; display: flex; flex-direction: column; padding: 26px 10px 10px; box-sizing: border-box; }
|
||||
.myinfo .contents .list-wrap .list-box .list > div.state { width: 100%; text-align: left; }
|
||||
.myinfo .contents .list-wrap .list-box .list > div.state span { position: absolute; top: 10px; left: 10px; min-width: auto; margin-top: 0; }
|
||||
.myinfo .contents .concern-data .list-box .list .text .ti a {height:45px;}
|
||||
|
||||
/* 내정보 */
|
||||
.passwd .contents { min-height: auto; }
|
||||
|
||||
@ -198,20 +198,18 @@ $(document).ready(function(){
|
||||
});
|
||||
|
||||
// 소장자료 디테일 목차정보
|
||||
$('.down-btn').append('<span class="blind">펼치기</span>');
|
||||
$('.down-btn').click(function(){
|
||||
if($('.down-btn').hasClass('on') === false) {
|
||||
$(this).addClass('on');
|
||||
$('.h-down').css('height','auto');
|
||||
$('.down-btn .blind').text('펼치기');
|
||||
$('.down-btn .blind').text('접기');
|
||||
} else {
|
||||
$(this).removeClass('on');
|
||||
$('.h-down').css('height','');
|
||||
$('.down-btn .blind').text('펼치기');
|
||||
}
|
||||
});
|
||||
$('.down-btn').append('<span class="blind">펼치기</span>');
|
||||
$('.down-btn .blind').text('펼치기');
|
||||
$('.down-btn.on .blind').text('접기');
|
||||
|
||||
// 공유하기 팝업
|
||||
$('.share').click(function(){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user