$(function(){ $("#prev_btn").click(function(){ //µ¿¿µ»ó ´º½º ¿À¸¥ÂÊ ¹öÆ° Ŭ¸¯½Ã $.img_slide("right"); }); $("#next_bnt").click(function(){ //µ¿¿µ»ó ´º½º ¿ÞÂÊ ¹öÆ° Ŭ¸¯½Ã $.img_slide("left"); }); var move_clck = 0; //¹öÆ° Ŭ¸¯ Ƚ¼ö(À̵¿ ȸ¼ö) var bfridx = 0; //ÀÌÀü ºü¸¥À̵¿ ¾ÆÀÌÄÜ idx $(".fast_move").click(function(){ var fmidx = $(this).index(); //™DÅÃµÈ ºü¸¥À̵¿ ¾ÆÀÌÄÜÀÇ À妽º //ÇöÀç ¼±ÅÃµÈ ºü¸¥À̵¿ ¾ÆÀÌÄܺ¸´Ù Å©´Ù¸é ¿À¸¥ÂÊÀ¸·Î À̵¿ if(bfridx < fmidx){ move_width = fmidx - bfridx; $("#move_box").animate({"marginLeft" : "-="+(1040 * move_width)+"px"}, {duration: 800}); bfridx = fmidx; move_clck = fmidx; //¹Ý´ë¶ó¸é ¿ÞÂÊÀ̵¿ }else{ move_width = bfridx - fmidx; $("#move_box").animate({"marginLeft" : "+="+(1040 * move_width)+"px"}, {duration: 800}); bfridx = fmidx; move_clck = fmidx; } //µ¿¿µ»ó div À̵¿ÈÄ ºü¸¥À̵¿ ¾ÆÀÌÄÜ À̹ÌÁö º¯°æ for(var i=0; i<$(".fast_move").length; i++){ if(i == fmidx){ $(".fast_move").eq(i).attr("src", "http://www.mhtimes.kr/default/image/bt_mov_p_on.png") }else{ $(".fast_move").eq(i).attr("src", "http://www.mhtimes.kr/default/image/bt_mov_p_off.png") } } }) $.img_slide = function(mode){ var box_len = $(".img_box").length; //Àüü vod °¹¼ö var move_cnt = (box_len/4)-1; //Àüü vod¸¦ 4°³¾¿ ³ª´©¾î À̵¿°¡´ÉÇÑ ÆäÀÌÁö ±¸ÇÔ. //¿À¸¥ÂÊ ¹öưŬ¸¯½Ã if(mode == "right"){ if(move_clck != move_cnt){ $("#move_box").animate({"marginLeft" : "-=1040px"}, {duration: 800}); //¿À¸¥ÂÊÀ¸·Î ÇÑÆäÀÌÁö¾¿ À̵¿ move_clck++; //À̵¿½Ã Ŭ¸¯¼ö Áõ°¡ }else if(move_clck == move_cnt){ //Ŭ¸¯¼ö = ÆäÀÌÁöÀ̵¿ ¼ö -> óÀ½À¸·Î À̵¿ $("#move_box").animate({"marginLeft" : "+="+(1040 * move_cnt)+"px"}, {duration: 800}); move_clck = 0; //óÀ½À̵¿ÈÄ Å¬¸¯¼ö ÃʱâÈ­ } bfridx = move_clck; }else{ //¿ÞÂÊ ¹öÆ° Ŭ¸¯½Ã if(move_clck != 0){ $("#move_box").animate({"marginLeft" : "+=1040px"}, {duration: 800}); //¿ÞÂÊÀ» ÇÑÆäÀÌÁö¾¿ À̵¿ move_clck--; //À̵¿½Ã Ŭ¸¯¼ö °¨¼Ò }else{ if(move_clck == 0){ $("#move_box").animate({"marginLeft" : "-="+(1040 * move_cnt)+"px"}, {duration: 800}); move_clck = move_cnt; } } bfridx = move_clck; } //µ¿¿µ»ó div À̵¿ÈÄ ºü¸¥À̵¿ ¾ÆÀÌÄÜ À̹ÌÁö º¯°æ for(var i=0; i<(move_cnt+1); i++){ if(i == move_clck){ $(".fast_move").eq(i).attr("src", "http://www.mhtimes.kr/default/image/bt_mov_p_on.png") }else{ $(".fast_move").eq(i).attr("src", "http://www.mhtimes.kr/default/image/bt_mov_p_off.png") } } } $(".r_pop_close").click(function(){ $("#popupdiv").hide(); }) $(".r_pop_close2").click(function(){ $("#popupdiv_ie").hide(); }) }) $(document).ready(function(){ var total_realcnt = $(".news01_ne_time").length; var cycle_cnt = 0; var cycle_time = 3000; realTimer = setInterval(function(){ if(cycle_cnt < total_realcnt){ var next_cnt = (cycle_cnt+1) % total_realcnt; var view_mode = $(".news01_ne_time").eq(cycle_cnt).css("display"); if(view_mode == "inline"){ $(".news01_ne_time").eq(cycle_cnt).css("display", "none"); $(".news01_ne_time").eq(next_cnt).css("display", "inline"); } cycle_cnt = next_cnt; } }, cycle_time) $('.cont_left01').css('width', 970 - $('.cont_right01').width() ); var rv = fnGetInternetExplorerVersion(); if(rv > 0 && rv < 8){ $("#popupdiv_ie").show(); } }) $(function(){ $(".today_menu").mouseenter(function(){ var tab_id = $(this).attr("id"); if(tab_id == "day_tab"){ $("#day_div").show(); $("#week_div").hide(); }else{ $("#week_div").show(); $("#day_div").hide(); } }); }) function fnGetInternetExplorerVersion() { var rv = -1; if (navigator.appName == 'Microsoft Internet Explorer') { var ua = navigator.userAgent; var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})"); if (re.exec(ua) != null) rv = parseFloat(RegExp.$1); }else{ return rv; } // Ãß°¡ ºÎºÐ if (rv < 8) { // ȣȯ¼º º¸±â ¸ðµå¿¡¼­´Â ¹öÁ¯ üũ°¡ Á¦µ¥·Î ¾ÈµÊ. //ÀͽºÇ÷η¯ 8 ¹Ì¸¸À¸·Î ³ª¿Ã °æ¿ì Trident °ªÀ» Çѹø ´õ üũ var trident = navigator.userAgent.match(/Trident\/(\d.\d)/i); if (trident != null) { // ¹öÀü 8ÀÌ»óÀ̸é trident °ªÀÌ null ÀÌ ¾Æ´Ô.. rv = trident[1]*1 + 4; } } return rv; } function ReadCookie(name) // ÄíÅ° ±â´ÉÀ» Á¤ÀÇ ÇÏ´Â ÀÚ¹ÙÀÔ´Ï´Ù. { var label = name + "=" ; // À̸§ var labelLen = label.length ; // À̸§±æÀÌ var cLen = document.cookie.length; // ÄíÅ°Àüü±æÀÌ var i = 0; while (i < cLen){ var j = i + labelLen; if (document.cookie.substring(i,j) == label) { // ÄíÅ°¿¡¼­ À̸§À» ã¾ÒÀ¸¸é var cEnd = document.cookie.indexOf(";",j) ; // j¿¡¼­ºÎÅÍ ;¸¦Ã£¾Æ À̸§³¡À§Ä¡¸¦ ã°í if (cEnd == -1){ cEnd = document.cookie.length; } return unescape(document.cookie.substring(j,cEnd)) ; // °ªÀ» µ¹·ÁÁØ´Ù³× } i++ ; // óÀ½ºÎÅÍ Ã£¾Æ³ª°¡³× } return ""; } function popup1() { // Æ˾÷âÀ» ¶ç¿ì°Ô ÇÏ´Â ÀÚ¹ÙÀÔ´Ï´Ù. var ck = ReadCookie( 'popup1' ); // Æ˾÷â¿¡¼­ ÀúÀåÇÑ popup1 À̶ó´Â À̸§ÀÇ ÄíÅ°ÀÇ °ªÀ» Àо if ( ck == '1' ) return; // ÄíÅ°°ªÀÌ 1ÀÌ¸é ¾È¶ç¿ò.. window.open("../main/popup1.html", "popup1", "left=70,top=70, width=246,height=380, toolbar=no, menubar=no, scrollbars=no, resizable=no"); } function popup2() { var ck = ReadCookie( 'popup2' ); if ( ck == '1' ) return; window.open("../main/popup2.html", "popup2", "left=210,top=70, width=400,height=588, toolbar=no, menubar=no, scrollbars=no, resizable=no"); } //·¹À̾îÆ˾÷ function setCookie( name, value, expiredays ) { var todayDate = new Date(); todayDate.setDate( todayDate.getDate() + expiredays ); document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";" } function closeWin(layerNum) { if ( document.getElementById("layer_chkbox"+layerNum).checked ){ setCookie( "maindiv"+layerNum, "done" , 1 ); } document.all['divpop'+layerNum].style.visibility = "hidden"; }