diff --git a/html/css/common.css b/html/css/common.css index 47bef36..18810b3 100644 --- a/html/css/common.css +++ b/html/css/common.css @@ -138,9 +138,24 @@ position:fixed;right:50px;bottom:20px;z-index:999;display:flex;justify-content:c .design-line::before{content:'';display:block;width:4px;height:200px;background:#000;} .design-line::after{content:'';display:block;width:1px;height:200px;background:#000;} .sub-cont{display:flex;padding:100px 0;} +.point-txt{color:#2290c9} +.list-txt{color: #333;font-size: 16px;line-height: 2.5;margin-top:20px;} +.list-txt > li {position: relative;} +.list-txt > li:before {content: "";display: inline-block;position: absolute;top: 0;left: 0;} + +/*회사소개*/ .company .img{margin-right:60px;} .company .img img{width:450px;} .company .txt h6{font-size:1.8rem;color:#000} .company .txt p{line-height:1.8;font-size:1rem;padding:20px 0;word-break: keep-all;} .company .txt-box + .txt-box{margin-top:40px;} -.point-txt{color:#2290c9} \ No newline at end of file + +/*연혁*/ + +.history{width:100%;padding-left:320px;margin:0px auto;} +.history .swiper-slide-active{max-width:1280px;opacity:1!important;} +.history .swiper-slide{opacity:0.5;} +.history .swiper-slide .test{width:1280px;height:200px;background:blue;width:500px;} +.history .swiper-button-next, .history .swiper-rtl .swiper-button-prev {right: auto;left: 1240px;} +.history-box{padding:0 100px;} +.history-box h6{font-size:4rem;} diff --git a/html/history.html b/html/history.html index ad4cdb5..5d5eda5 100644 --- a/html/history.html +++ b/html/history.html @@ -67,11 +67,50 @@

연혁

-
- -
- +
+
+
+
+
+
2021
+
    +
  • 02 현대자동차 QR코드 출입시스템 운영 및 유지보수(현대자동차)
  • +
  • 03 파브 기술 및 기업/산업 현황 분석(인천테크노파크)
  • +
  • 03 파브 부품 상용화 대응 기술 및 제도 인프라 조사용역(인천테크노파크)
  • +
  • 03 인천광역시 스마트관광도시 조성사업 품질보증 용역(인천스마트시티) +
  • 03 KT 클라우드 인천총판 등록(KT)
  • +
  • 06 드론 규제 샌드박스 사업 + (드론 관리 체계에 따른 식별장치 및 비행 관제시스템 구축)(항공안전기술원)
  • +
  • 06 SSG 여행몰 유지보수 용역(SSG.com)
  • +
  • 07 KB 국민은행 소프트웨어 경진대회 메타버스 구축 및 + 콘텐츠 개발 운영사업(사피엔스 4.0)
  • +
  • 07 XR 융합콘텐츠 실증 및 개발지원 과제 협약(인천테크노파크)
  • +
  • 07 현대자동차 무인전시장 QR 코드인증 출입시스템 개발
  • +
  • 08 드론 실증 비즈니스 사업화(공공서비스 기술 고도화) 선정 관련기사
  • +
  • 09 캐플릭스 OTA 항공서비스 구축(제주패스)(캐플릭스)
  • +
  • 09 지역특화 데이터 산업화 기반 조성 사업 선정
  • +
  • 10 ADEX 2021 전시회 참가 관련기사
  • +
  • 10 기업 디지털 트랜스포메이션(DT)을 통한 클라우드 전환 사업 선정
  • +
  • 11 인천 PAV 컨소시엄 선정 관련기사
  • +
  • 12 KMF(Korea Metaverse Festival) 전시회 참가
  • +
+
+
+
+
2
+
+
+
3
+
+
+
4
+
+
+
+
+
+
diff --git a/html/js/common.js b/html/js/common.js index e29ec50..ee9c308 100644 --- a/html/js/common.js +++ b/html/js/common.js @@ -224,4 +224,26 @@ $(function() { $('.topBtn').click(function(){ $('html, body').animate({scrollTop:0},300); }); +}); + + +$(function(){ + new Swiper('.swiper-container-history'); + const swiper = new Swiper('.swiper-container-history', { + //기본 셋팅 + direction: 'horizontal', + slidesPerView: 3, + spaceBetween: 100, + slidesPerView:true, + centeredSlides: true, + autoplay: false, + //방향표 + navigation: { + //다음페이지 설정 + nextEl: '.swiper-button-next', + //이전페이지 설정 + prevEl: '.swiper-button-prev', + }, + }); + }); \ No newline at end of file