parent
9e5e70f60e
commit
f74179966e
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Context path="/">
|
||||
<Resources>
|
||||
<!-- <PostResources base="d:\bf\music" className="org.apache.catalina.webresources.DirResourceSet" webAppMount="/upload"/>-->
|
||||
<PostResources base="c:\bf\music" className="org.apache.catalina.webresources.DirResourceSet" webAppMount="/upload"/>
|
||||
</Resources>
|
||||
</Context>
|
||||
|
@ -0,0 +1,145 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="ko">
|
||||
|
||||
<#include "/m/include/index_top.ftl">
|
||||
<script src="../js/jquery.easypiechart.min.js"></script>
|
||||
<body>
|
||||
|
||||
<!-- wrap -->
|
||||
<div class="wrap">
|
||||
|
||||
<!-- header_sub -->
|
||||
<header class="header_wrapper">
|
||||
<a href="javascript:back.return_url()" class="side_Lbtn hidden pre_btn">이전으로</a>
|
||||
<h1 class="header_title">메모리</h1>
|
||||
<a href="#" class="side_Rbtn hidden"></a>
|
||||
</header>
|
||||
<!-- //header_sub -->
|
||||
|
||||
<!-- 메모리 카테고리 -->
|
||||
<ul class="memory_ca">
|
||||
<li class="current">
|
||||
<a href="${URL_ROOT}/m/memory/memory_daily.do?return_url=index">
|
||||
일간
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="${URL_ROOT}/m/memory/memory_week.do?return_url=index">
|
||||
주간
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="${URL_ROOT}/m/memory/memory_timeline.do?return_url=index">
|
||||
타임라인
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- //메모리 카테고리 -->
|
||||
|
||||
<!-- 컬러 박스 -->
|
||||
<div class="color_box">
|
||||
<button type="button" class="m_color01"></button>
|
||||
<button type="button" class="m_color02"></button>
|
||||
<button type="button" class="m_color03"></button>
|
||||
<button type="button" class="m_color04"></button>
|
||||
<button type="button" class="m_color05"></button>
|
||||
<button type="button" class="m_color06"></button>
|
||||
</div>
|
||||
<!-- //컬러 박스 -->
|
||||
|
||||
<!-- 날짜 -->
|
||||
<div class="memory_date">
|
||||
<button type="button"><img src="../img/xxxx_sprites/arrow_01_left02.png" alt=""></button>
|
||||
2022.01.02(일)
|
||||
<button type="button"><img src="../img/xxxx_sprites/arrow_01_right.png" alt=""></button>
|
||||
</div>
|
||||
<!-- //날짜 -->
|
||||
|
||||
<!-- pie chart -->
|
||||
<div class="chart memory_daily_chart" data-percent="60.5">
|
||||
<p class="title"><span>DAY</span> 173d</p>
|
||||
|
||||
<ul class="hour">
|
||||
<li>0</li>
|
||||
<li>2</li>
|
||||
<li>4</li>
|
||||
<li>6</li>
|
||||
<li>8</li>
|
||||
<li>10</li>
|
||||
<li>12</li>
|
||||
<li>14</li>
|
||||
<li>16</li>
|
||||
<li>18</li>
|
||||
<li>20</li>
|
||||
<li>22</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- //pie chart -->
|
||||
|
||||
|
||||
<div class="fix_icon">
|
||||
<button type="button"><img src="../../img/ico_image_grey_24.png" alt=""></button>
|
||||
<button type="button"><img src="../../img/ico_share_grey_24.png" alt=""></button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //wrap -->
|
||||
|
||||
<!-- 하단 네비 iyu_nav -->
|
||||
<nav class="iyu_nav">
|
||||
<ul>
|
||||
<li class="nav_list01">
|
||||
<a href="../sn_nutrition/view_sn_nutrition_main.html">
|
||||
<div class="icon">영양</div>
|
||||
<div class="tit">영양</div>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav_list02">
|
||||
<a href="../sn_growth_body/view_sn_growth_main.html">
|
||||
<div class="icon">성장</div>
|
||||
<div class="tit">성장</div>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav_list03">
|
||||
<a href="../sn_index/index.html">
|
||||
<div class="icon">홈</div>
|
||||
<div class="tit">홈</div>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav_list04">
|
||||
<a href="../sn_food_information/view_sn_food_information_main.html">
|
||||
<div class="icon">식품정보</div>
|
||||
<div class="tit">식품정보</div>
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav_list05">
|
||||
<a href="../sn_community/list_sn_community.html">
|
||||
<div class="icon">커뮤니티</div>
|
||||
<div class="tit">커뮤니티</div>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<!-- //iyu_nav -->
|
||||
|
||||
|
||||
<script>
|
||||
$('.memory_daily_chart').easyPieChart({
|
||||
barColor: '#FF9C01',
|
||||
trackColor: '#E5E5E5',
|
||||
scaleColor: '#ccc',
|
||||
lineCap: 'butt',
|
||||
lineWidth: 55,
|
||||
size: 200,
|
||||
animate: 1000,
|
||||
onStart: $.noop,
|
||||
onStop: $.noop
|
||||
});
|
||||
</script>
|
||||
|
||||
<!-- 하단 네비 iyu_nav -->
|
||||
<#include "/m/include/index_bottom_menu.ftl">
|
||||
<!-- //iyu_nav -->
|
||||
<#include "/m/member_env/include_return_url.ftl">
|
||||
</body>
|
||||
<#include "/m/include/index_bottom.ftl">
|
||||
</html>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue