Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
gun1977 authored Mar 25, 2024
1 parent 4160911 commit 58b2440
Show file tree
Hide file tree
Showing 66 changed files with 19,121 additions and 0 deletions.
8 changes: 8 additions & 0 deletions WEB-INF/view/sub/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<a href="howto_google_maps.asp">Google Maps</a><br>
<a href="howto_css_animate_buttons.asp">Animated Buttons</a><br>
<a href="howto_css_modals.asp">Modal Boxes</a><br>
<a href="howto_js_animate.asp">Animations</a><br>
<a href="howto_js_progressbar.asp">Progress Bars</a><br>
<a href="howto_css_dropdown.asp">Hover Dropdowns</a><br>
<a href="howto_js_dropdown.asp">Click Dropdowns</a><br>
<a href="howto_css_table_responsive.asp">Responsive Tables</a><br>
829 changes: 829 additions & 0 deletions WEB-INF/view/sub/guide copy.html

Large diffs are not rendered by default.

1,250 changes: 1,250 additions & 0 deletions WEB-INF/view/sub/guide.html

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions WEB-INF/view/sub/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!doctype html>
<html lang="us">
<head>
<meta charset="utf-8">
<title>jQuery UI Datepicker Month &amp; Year Picker Addon Example Page</title>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.js"></script>

<!-- MonthYearPicker-Addon .css and .js -->
<link type="text/css" href="../../../resources/front/css/monthyearpicker.css" rel="stylesheet" />
<script type="text/javascript" src="../../../resources/front/js/monthyearpicker.js"></script>

</head>
<body>

<h1>Welcome to jQuery UI Datepicker Month &amp; Year Picker Addon!</h1>

<div class="ui-widget">
<p>This page demonstrates the addon.</p>
</div>

<h1>Example:</h1>

<!-- Datepicker -->
<h2 class="demoHeaders">Datepicker</h2>
<div><p>Click on the [Month Year] link to see the magic:</p></div>

<h3>Date field</h3>
<input type="text" id="datepicker">

<h3>Inline datepicker</h3>
<div id="datepicker-inline"></div>

<script>
$( "#datepicker-inline" ).datepicker({
inline: true
});
$( "#datepicker" ).datepicker();
</script>

</body>
</html>
79 changes: 79 additions & 0 deletions WEB-INF/view/sub/layout.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<!DOCTYPE html>
<html lang="ko">

<head>
<meta charset="utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<meta name="format-detection" content="telephone=no, date=no, address=no, email=no" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>GUIDE</title>

<link rel="stylesheet" type="text/css" href="../../../resources/front/css/common.css" />

<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script src="https://code.jquery.com/ui/1.13.2/jquery-ui.js"></script>
<script src="../../../resources/front/js/monthyearpicker.js"></script>

<script src="../../../resources/front/js/common.js"></script>
</head>

<body>

<!-- skip -->
<script type="text/javascript" src="../../../resources/front/js/inc_skip.js"></script>
<!-- //skip-->

<div class="bui-wrap" style="padding-top:0;">
<header style="/*height:80px;*/ background:#eee;">
<div style="display: flex;
justify-content: space-between;
align-items: center;max-width:1200px; margin:0 auto;">
<div>logo</div>
<div>
<ul style="display:flex; column-gap:60px;">
<li style="display:flex; justify-content:center; align-items:center;"><a href="#" style="display:block; padding:50px 0;">menu01</a></li>
<li style="display:flex; justify-content:center; align-items:center;"><a href="#" style="display:block; padding:50px 0;">menu02</a></li>
<li style="display:flex; justify-content:center; align-items:center;"><a href="#" style="display:block; padding:50px 0;">menu03</a></li>
<li style="display:flex; justify-content:center; align-items:center;"><a href="#" style="display:block; padding:50px 0;">menu04</a></li>
</ul>
</div>
<div>
<ul style="display:flex; column-gap:10px;">
<li><a href="#">util01</a></li>
<li><a href="#">util02</a></li>
<li><a href="guide.html">guide</a></li>
</ul>
</div>
</div>
</header>

<div id="container" class="container" style="min-height:300px;">
<div class="content">
</div>
</div>

<footer style="height:80px; color:#fff; line-height:80px; background:#000; text-align:center;">
<div>
© Copyright U:Companion
</div>
</footer>
</div>

<script>
$(function() {
var fixmeTop = $('.qwer').offset().top;

$(window).scroll(function() {
var currentScroll = $(window).scrollTop();
if (currentScroll > fixmeTop) {
$(".qwer").addClass("fixed");
} else {
$(".qwer").removeClass("fixed");
}
});
});
</script>

</body>
</html>
Loading

0 comments on commit 58b2440

Please sign in to comment.