This commit is contained in:
parent
836bd0c033
commit
988a4d9ac9
|
|
@ -361,11 +361,13 @@
|
|||
<Content Include="img\main\main_edu_thumb03.jpg" />
|
||||
<Content Include="img\main\main_edu_thumb04.jpg" />
|
||||
<Content Include="img\main\main_edu_thumb05.jpg" />
|
||||
<Content Include="img\main\main_search_btn.png" />
|
||||
<Content Include="img\main\main_top_bg.jpg" />
|
||||
<Content Include="img\main\main_top_bg_m.jpg" />
|
||||
<Content Include="img\main\main_top_ico01.png" />
|
||||
<Content Include="img\main\main_top_ico02.png" />
|
||||
<Content Include="img\main\main_top_ico03.png" />
|
||||
<Content Include="img\main\select_arrow.png" />
|
||||
<Content Include="img\mypage\banner01_m.jpg" />
|
||||
<Content Include="img\mypage\banner01_mid.jpg" />
|
||||
<Content Include="img\mypage\banner01_pc.jpg" />
|
||||
|
|
|
|||
|
|
@ -1,12 +1,14 @@
|
|||
@model NP.Model.VMHome
|
||||
<!doctype html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko">
|
||||
|
||||
<head>
|
||||
<style>
|
||||
.offTab {
|
||||
padding-bottom : 0px;
|
||||
margin-bottom : 0px;
|
||||
.mainTop *{
|
||||
font-family: 'Noto Sans KR', sans-serif;
|
||||
font-size: 11pt;
|
||||
letter-spacing: -0.05em;
|
||||
font-weight: 400;
|
||||
color: #fff;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
</style>
|
||||
<meta charset="utf-8">
|
||||
|
|
@ -46,109 +48,104 @@
|
|||
<script type="text/javascript" src="../js/slick.min.js"></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
@section main{
|
||||
<div id="main">
|
||||
<div class="container">
|
||||
<div class="mainTop">
|
||||
<h2><span>YICTE</span> Smart Search</h2>
|
||||
<p>나에게 필요한 교육을 찾아드립니다.</p>
|
||||
</div>
|
||||
<form action="">
|
||||
<input type="hidden" id="sch1" value="" />
|
||||
<input type="hidden" id="sch2" value="" />
|
||||
<input type="hidden" id="sch3" value="" />
|
||||
<input type="hidden" id="sch4" value="" />
|
||||
<input type="hidden" id="sch5" value="" />
|
||||
<ul class="mainSch">
|
||||
<li class="msCont">
|
||||
<em>SKILL</em>
|
||||
<div class="msSel active" id="msSel1">
|
||||
<span>교육유형</span>
|
||||
<div>
|
||||
<div>
|
||||
<ul>
|
||||
<li><a href="javascript:schIpt('1', '1', '온라인교육');">온라인교육</a></li>
|
||||
<li><a href="javascript:schIpt('1', '0', '교육장교육');">교육장교육</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="msCont">
|
||||
<em>JOB</em>
|
||||
<div class="msSel disable" id="msSel2">
|
||||
<span>직무분야</span>
|
||||
<div>
|
||||
<div>
|
||||
<ul>
|
||||
@foreach (var t in Model.ComCodes.Where(w => w.cgroup.ToString() == "typeman"))
|
||||
{
|
||||
<li><a href="javascript:schIpt('2', '@t.ccode', '@t.cname');">@t.cname</a></li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="msCont">
|
||||
<em>OBJECT</em>
|
||||
<div class="msSel disable" id="msSel3">
|
||||
<span>교육목적</span>
|
||||
<div>
|
||||
<div>
|
||||
<ul>
|
||||
@foreach (var t in Model.ComCodes.Where(w => w.cgroup.ToString() == "typeedu"))
|
||||
{
|
||||
<li><a href="javascript:schIpt('3', '@t.ccode', '@t.cname');">@t.cname</a></li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="msCont">
|
||||
<em>GRADE</em>
|
||||
<div class="msSel disable" id="msSel4">
|
||||
<span id="spnTypeGrade">등급</span>
|
||||
<div>
|
||||
<div>
|
||||
<ul>
|
||||
@foreach (var t in Model.ComCodes.Where(w => w.cgroup.ToString() == "typegrade"))
|
||||
{
|
||||
<li id="liGrade@(t.ccode)"><a href="javascript:schIpt('4', '@t.ccode', '@t.cname');">@t.cname</a></li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="msCont">
|
||||
<em>TYPE</em>
|
||||
<div class="msSel disable" id="msSel5">
|
||||
<span>직무분야</span>
|
||||
<div>
|
||||
<div>
|
||||
<ul>
|
||||
@foreach (var t in Model.ComCodes.Where(w => w.cgroup.ToString() == "typejob"))
|
||||
{
|
||||
<li><a href="javascript:schIpt('5', '@t.ccode', '@t.cname');">@t.cname</a></li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li><a href="#" class="msBtn">검색하기</a></li>
|
||||
</ul>
|
||||
</form>
|
||||
@section main{
|
||||
<div id="main">
|
||||
<div class="container">
|
||||
<div class="mainTop">
|
||||
<h2>YICTE Smart Search</h2>
|
||||
<p>나에게 필요한 교육을 찾아드립니다.</p>
|
||||
</div>
|
||||
<form action="">
|
||||
<input type="hidden" id="sch1" value="" />
|
||||
<input type="hidden" id="sch2" value="" />
|
||||
<input type="hidden" id="sch3" value="" />
|
||||
<input type="hidden" id="sch4" value="" />
|
||||
<input type="hidden" id="sch5" value="" />
|
||||
<ul class="mainSch">
|
||||
<li class="msCont">
|
||||
<em>SKILL</em>
|
||||
<div class="msSel active" id="msSel1">
|
||||
<span>교육유형</span>
|
||||
<div>
|
||||
<div>
|
||||
<ul>
|
||||
<li><a href="javascript:schIpt('1', '1', '온라인교육');">온라인교육</a></li>
|
||||
<li><a href="javascript:schIpt('1', '0', '교육장교육');">교육장교육</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="msCont">
|
||||
<em>JOB</em>
|
||||
<div class="msSel disable" id="msSel2">
|
||||
<span>직무분야</span>
|
||||
<div>
|
||||
<div>
|
||||
<ul>
|
||||
@foreach (var t in Model.ComCodes.Where(w => w.cgroup.ToString() == "typeman"))
|
||||
{
|
||||
<li><a href="javascript:schIpt('2', '@t.ccode', '@t.cname');">@t.cname</a></li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="msCont">
|
||||
<em>OBJECT</em>
|
||||
<div class="msSel disable" id="msSel3">
|
||||
<span>교육목적</span>
|
||||
<div>
|
||||
<div>
|
||||
<ul>
|
||||
@foreach (var t in Model.ComCodes.Where(w => w.cgroup.ToString() == "typeedu"))
|
||||
{
|
||||
<li><a href="javascript:schIpt('3', '@t.ccode', '@t.cname');">@t.cname</a></li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="msCont">
|
||||
<em>GRADE</em>
|
||||
<div class="msSel disable" id="msSel4">
|
||||
<span id="spnTypeGrade">등급</span>
|
||||
<div>
|
||||
<div>
|
||||
<ul>
|
||||
@foreach (var t in Model.ComCodes.Where(w => w.cgroup.ToString() == "typegrade"))
|
||||
{
|
||||
<li id="liGrade@(t.ccode)"><a href="javascript:schIpt('4', '@t.ccode', '@t.cname');">@t.cname</a></li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="msCont">
|
||||
<em>TYPE</em>
|
||||
<div class="msSel disable" id="msSel5">
|
||||
<span>직무분야</span>
|
||||
<div>
|
||||
<div>
|
||||
<ul>
|
||||
@foreach (var t in Model.ComCodes.Where(w => w.cgroup.ToString() == "typejob"))
|
||||
{
|
||||
<li><a href="javascript:schIpt('5', '@t.ccode', '@t.cname');">@t.cname</a></li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li><a href="#" class="msBtn">검색하기</a></li>
|
||||
</ul>
|
||||
</form>
|
||||
</div>
|
||||
}
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</div>
|
||||
}
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function () {
|
||||
$("#lblTypeGrade").text("등급");
|
||||
|
|
|
|||
|
|
@ -407,7 +407,7 @@ a.msBtn {
|
|||
width: 32px;
|
||||
height: 17px;
|
||||
margin-left: 20px;
|
||||
background: url('../../img/main/main_search_btn.png')no-repeat center center;
|
||||
background: url('../img/main/main_search_btn.png')no-repeat center center;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
|
|
@ -444,7 +444,7 @@ a.msBtn {
|
|||
right: 20px;
|
||||
top: 50%;
|
||||
margin-top: -3px;
|
||||
background: url('../../img/main/select_arrow.png')no-repeat center bottom;
|
||||
background: url('../img/main/select_arrow.png')no-repeat center bottom;
|
||||
background-size: 100% auto;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue