-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
66 changed files
with
19,121 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 & 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 & 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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.