This file contains hidden or 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
| #gnb { height: 60px; margin: 0 0 20px 0; } | |
| #gnb ul.core { position: relative; list-style: none; margin: 0; padding: 0; font-size: 12px; border-bottom: 1px solid #ccc; *zoom: 1; } | |
| #gnb ul.core:after { content: ""; display: block; clear: both; } | |
| #gnb a { position: relative; text-decoration: none; white-space: nowrap; } | |
| #gnb li { float: left; margin: 0 -1px -1px 0;} | |
| #gnb li a { display: inline-block; border: 1px solid #ccc; border-bottom: 0; height: 15px; padding: 7px 15px; color: #333; } | |
| #gnb div.d2 { display: none; position: absolute; left: 0; top: 40px; } | |
| #gnb ul.d2 { list-style: none; margin: 0; padding: 0; } | |
| #gnb li.d2 { padding: 0 15px; border-left: 1px solid #ccc; } | |
| #gnb a.d2 { border: 0; padding: 0; color: #767676; font-weight: normal !important; letter-spacing: normal !important; } |
This file contains hidden or 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
| <div id="gnb"> | |
| <ul class="core gnb1-2"> | |
| <li class="d1 gnb1"><a href="#" class="d1"><span>메뉴 1</span></a> | |
| <div class="d2"> | |
| <ul class="d2"> | |
| <li class="d2 gnb1-1"><a href="#" class="d2"><span>메뉴 1-1</span></a></li> | |
| <li class="d2 gnb1-2"><a href="#" class="d2"><span>메뉴 1-2</span></a></li> | |
| <li class="d2 gnb1-3"><a href="#" class="d2"><span>메뉴 1-3</span></a></li> | |
| </ul> | |
| </div> |
This file contains hidden or 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
| <script type="text/javascript" src="activeX.js"></script> <!-- head태그 내에 삽입--> | |
| <div id="eventFlash"></div> <!-- id는 상황에맞게 지정 --> | |
| <script type="text/javascript"> | |
| <!-- | |
| daumFlash("플래쉬 URL","798","500","eventFlash"); | |
| //--> | |
| </script> |
This file contains hidden or 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
| <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="400" height="300" title="플래쉬 무비클립"> | |
| <param name="quality" value="autohigh" /> | |
| <param name="allowScriptAccess" value="always" /> | |
| <param name="wmode" value="window" /> | |
| <param name="scale" value="exactfit" /> | |
| <param name="salign" value="ct" /> | |
| <param name="movie" value="../swf/test.swf" /> | |
| <param name="base" value="." /> | |
| <!--[if !IE]> <--> | |
| <object type="application/x-shockwave-flash" data="../swf/test.swf" width="400" height="300" title="플래쉬 무비클립"> |
This file contains hidden or 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
| $.fn.carouFredSel.defaults.items.visible = { min: 1, max: 1 } | |
| $.fn.carouFredSel.defaults.auto = { | |
| pauseOnHover: 'resume', | |
| duration: 900, | |
| delay: 0 | |
| }; | |
| // carouselA | |
| $('#carouselA').carouFredSel({ | |
| items: 3, |
This file contains hidden or 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
| <div class="carousel carousel-a"><!-- carousel a --> | |
| <div class="paginate"> | |
| <a id="prevA" class="prev" href="#carouselA"><img src="../img/main/pagin_carousel_a_prev.gif" alt="이전" /></a> | |
| <a id="nextA" class="next" href="#carouselA"><img src="../img/main/pagin_carousel_a_next.gif" alt="다음" /></a> | |
| </div> | |
| <ul id="carouselA"> | |
| <li><a href="#none"><img src="../img/main/btn_carousel_a_off_01.gif" alt="내용1" /></a></li> | |
| <li><a href="#none"><img src="../img/main/btn_carousel_a_off_02.gif" alt="내용2" /></a></li> | |
| <li><a href="#none"><img src="../img/main/btn_carousel_a_off_03.gif" alt="내용3" /></a></li> | |
| <li><a href="#none"><img src="../img/main/btn_carousel_a_off_03.gif" alt="내용4" /></a></li> |
This file contains hidden or 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
| $(function(){ | |
| // on load | |
| // $.blockUI({ message: $('#question') }); | |
| $('div.blockOverlay, .button-close').click(function() { | |
| $.unblockUI(); | |
| return false; | |
| }); |
This file contains hidden or 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
| <script type="text/javascript" src="../js/ui.js" charset="utf-8" defer="defer"></script> |