2023/11/20 저작권전자조정시스템 나의 조정사건 목록 튜토리얼

This commit is contained in:
subsub 2023-11-20 11:56:26 +09:00
parent 236e4fe342
commit 83b575092a
8 changed files with 94 additions and 0 deletions

View File

@ -1813,4 +1813,13 @@ public class AdjstReqWebController {
return "/web/kccadr/adjst/adjstReqRegistTutorial";
}
/**
나의 조정사건 목록 - 튜토리얼
*/
@RequestMapping("/web/kccadr/adjst/adjstProgressTutorial.do")
public String adjstProgressTutorial() throws Exception {
return "/web/kccadr/adjst/adjstProgressTutorial";
}
}

View File

@ -126,6 +126,8 @@
<pattern>/web/kccadr/payment/inipay/*</pattern> <!-- 결재 모듈 테스트 -->
<pattern>/kccadr/adjPgrMgr/drtCtr/drtCtrReg_for_ApprovManageEndDetail.do</pattern>
<pattern>/web/kccadr/adjst/adjstProgressTutorial.do</pattern>
</decorator>

View File

@ -103,9 +103,15 @@
, "rejectCnPop"
);
}
function tutorialPop(){
var form = document.popForm;
commonPopWindowopenForm("/web/kccadr/adjst/adjstProgressTutorial.do" , "50000", "50000", "tutorialPop2", $("#popForm"));
}
</script>
</head>
<body>
<form id="popForm" name="popForm"></form>
<form:form id="listForm" name="listForm" commandName="adjstIncidentVO" onsubmit="return false;" method="post">
<input type="hidden" name="pageIndex" value="<c:out value='${adjstIncidentVO.pageIndex}' default='1' />"/>
<input type="hidden" name="searchSortCnd" value="<c:out value="${adjstIncidentVO.searchSortCnd}" />" />
@ -119,6 +125,7 @@
<div class="inner">
<div class="cont_tit">
<h2>나의 조정사건 목록</h2>
<button type="button" class="btnType03" onclick="tutorialPop();">전체과정 미리보기(튜토리얼)</button>
</div>
<!-- list_top -->

View File

@ -0,0 +1,76 @@
<%@ page contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ui" uri="http://egovframework.gov/ctl/ui"%>
<%@ 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" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
<%@ taglib prefix="un" uri="http://jakarta.apache.org/taglibs/unstandard-1.0" %>
<%
response.setHeader("Cache-Control","no-store");
response.setHeader("Pragma","no-cache");
response.setDateHeader("Expires",0);
if (request.getProtocol().equals("HTTP/1.1")) response.setHeader("Cache-Control", "no-cache");
%>
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>조정진행 상황 < 튜토리얼 < 저작권 전자조정시스템</title>
<!-- css -->
<link rel="stylesheet" href="/kccadrPb/tutorial/css/reset.css">
<link rel="stylesheet" href="/kccadrPb/tutorial/css/tutorial.css">
<style>
.tutorial{height:100vh;text-align:center;}
.tutorial img{height:100%;width:auto;text-align:center;}
</style>
<!-- script -->
<script src="/kccadrPb/tutorial/script/jquery-3.5.0.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".left_mask").click(function(){
var imgSrc = $("img").prop("src");
if(imgSrc.indexOf("progress_04.gif") > -1){
$("img").attr("src","/kccadrPb/tutorial/image/progress_03.gif");
$(".right_mask").removeClass("last");
}else if(imgSrc.indexOf("progress_03.gif") > -1){
$("img").attr("src","/kccadrPb/tutorial/image/progress_02.gif");
}else if(imgSrc.indexOf("progress_02.gif") > -1){
$("img").attr("src","/kccadrPb/tutorial/image/progress_01.gif");
$(".left_mask").addClass("first");
}
});
$(".right_mask").click(function(){
var imgSrc = $("img").prop("src");
if(imgSrc.indexOf("01.gif") > -1){
$("img").attr("src","/kccadrPb/tutorial/image/progress_02.gif");
$(".left_mask").removeClass("first");
}else if(imgSrc.indexOf("progress_02.gif") > -1){
$("img").attr("src","/kccadrPb/tutorial/image/progress_03.gif");
}else if(imgSrc.indexOf("progress_03.gif") > -1){
$("img").attr("src","/kccadrPb/tutorial/image/progress_04.gif");
$(".right_mask").addClass("last");
}
});
})
</script>
</head>
<body>
<div class="mask">
<div class="left_mask first"></div>
<div class="right_mask"></div>
</div>
<div class="tutorial">
<img src="/kccadrPb/tutorial/image/progress_01.gif" alt="">
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB