feat: can(천안) 모바일페이지 반영
parent
4bc67bee8c
commit
39108a447b
@ -1,30 +0,0 @@
|
|||||||
package kr.xit.biz.mbl.web;
|
|
||||||
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
import org.springframework.web.servlet.ModelAndView;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <pre>
|
|
||||||
* description : 전자문서 중개자 모바일 페이지 API Controller
|
|
||||||
* - mens-web에서 호출
|
|
||||||
* packageName : kr.xit.biz.mbl.web
|
|
||||||
* fileName : MobilePageController
|
|
||||||
* author : limju
|
|
||||||
* date : 2023-08-31
|
|
||||||
* ======================================================================
|
|
||||||
* 변경일 변경자 변경 내용
|
|
||||||
* ----------------------------------------------------------------------
|
|
||||||
* 2023-08-31 limju 최초 생성
|
|
||||||
*
|
|
||||||
* </pre>
|
|
||||||
*/
|
|
||||||
@RestController
|
|
||||||
public class TestController {
|
|
||||||
|
|
||||||
|
|
||||||
@RequestMapping(value = "/index")
|
|
||||||
public ModelAndView test() {
|
|
||||||
return new ModelAndView("index");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,99 +0,0 @@
|
|||||||
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
|
|
||||||
|
|
||||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
||||||
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
|
|
||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
|
|
||||||
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
|
|
||||||
|
|
||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
|
|
||||||
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
|
|
||||||
<script type="text/javascript" src="/3rd-party/jquery/js/jquery-3.6.1.min.js"></script>
|
|
||||||
<link rel="stylesheet" href="${ctx }/css/ens/ens_style.css"/>
|
|
||||||
<%-- <script src="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.min.js"></script>--%>
|
|
||||||
<%-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.css"/>--%>
|
|
||||||
<%-- <style>--%>
|
|
||||||
<%-- .bx-wrapper ul.img-slider > li > a > img {--%>
|
|
||||||
<%-- min-height: 30rem;--%>
|
|
||||||
<%-- max-height: 45rem;--%>
|
|
||||||
<%-- margin: auto;--%>
|
|
||||||
<%-- }--%>
|
|
||||||
<%-- .bx-wrapper ul.img-slider > li {--%>
|
|
||||||
<%-- font-size: 1.5rem;--%>
|
|
||||||
<%-- }--%>
|
|
||||||
<%-- </style>--%>
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
|
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css"/>
|
|
||||||
<style>
|
|
||||||
.swiper {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
.swiper-slide {
|
|
||||||
text-align: center;
|
|
||||||
font-size: 10px;
|
|
||||||
background: #fff;
|
|
||||||
|
|
||||||
/* Center slide text vertically */
|
|
||||||
display: -webkit-box;
|
|
||||||
display: -ms-flexbox;
|
|
||||||
display: -webkit-flex;
|
|
||||||
display: flex;
|
|
||||||
-webkit-box-pack: center;
|
|
||||||
-ms-flex-pack: center;
|
|
||||||
-webkit-justify-content: center;
|
|
||||||
justify-content: center;
|
|
||||||
-webkit-box-align: center;
|
|
||||||
-ms-flex-align: center;
|
|
||||||
-webkit-align-items: center;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
.swiper-slide img {
|
|
||||||
display: block;
|
|
||||||
/*width: 100%;*/
|
|
||||||
/*height: 100%;*/
|
|
||||||
min-height: 20rem;
|
|
||||||
max-height: 30rem;
|
|
||||||
object-fit: scale-down; /* cover; */
|
|
||||||
}
|
|
||||||
.swiper-pagination-bullet {
|
|
||||||
width: 2rem;
|
|
||||||
height: 2rem;
|
|
||||||
text-align: center;
|
|
||||||
line-height: 2rem;
|
|
||||||
font-size: 1rem;
|
|
||||||
color: #000;
|
|
||||||
opacity: 1;
|
|
||||||
background: rgba(0, 0, 0, 0.2);
|
|
||||||
}
|
|
||||||
.swiper-pagination-bullet-active {
|
|
||||||
color: #fff;
|
|
||||||
background: #007aff;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 스크롤 활성화 하려면 코멘트 제거 */
|
|
||||||
section{
|
|
||||||
overflow-x: auto;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<title>고지 출력</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="contents"></div>
|
|
||||||
<p>index.jsp test page</p>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</html>
|
|
Loading…
Reference in New Issue