function wrapWindowByMask2(){ var maskHeight = jQuery(document).height() + 100 ; var maskWidth = jQuery(window).width(); jQuery('#mask2').css({'width':maskWidth,'height':maskHeight}); //jQuery('#mask2').fadeIn(1000); jQuery('#mask2').fadeTo("fast",0.7); //jQuery('#div_img').css('top', jQuery('#div_img').offset().top + (maskWidth / 4 - 100)); //alert(img) //jQuery('#resize_img').hide(); jQuery('#div_img,#resize_img').fadeIn('2000',function(){ jQuery('#resize_img').show('slow') //jQuery('#resize_img').animate({'width':w,'height':h},1000); }); } jQuery(document).ready(function(){ //°ËÀº ¸· ¶ç¿ì±â jQuery('#mask2').click(function(e){ e.preventDefault(); wrapWindowByMask2(); jQuery("#div_img").show(); }); //´Ý±â ¹öÆ°À» ´­·¶À» ¶§ jQuery('.close_btn').click(function (e) { //¸µÅ© ±âº»µ¿ÀÛÀº ÀÛµ¿ÇÏÁö ¾Êµµ·Ï ÇÑ´Ù. e.preventDefault(); jQuery('#div_img, #mask2').hide(); }); var img_wid = 450;//jQuery("#quick_menu_div").width(); // alert(img_wid); var w = (jQuery(document).width() - img_wid) / 2.3 ; //alert(w); //var rest = img_wid - w; //alert(jQuery(document).width() - img_wid); var b_width = jQuery(document.body).width() ; //ÆäÀÌÁö Àüüũ±â var d_width = jQuery(document).width(); //º»¹® Àüü Å©±âÀÓ var t_height = jQuery(document.body).scrollTop(); //»ó´Ü ³ôÀÌ //width = (b_width - d_width) <= 0 ? 923 : b_width/2 +420; //Áß¾Ó¿¡¼­ ¾î´À À§Ä¡¿¡ ³õÀ»Áö Àû´Â´Ù. //900Àº °¡¿îµ¥ Á¤·ÄÇÑ div °ªÀ» Àû´Â´Ù. //-610Àº ¿ÞÂÊÀ¸·Î +´Â ¿À¸¥ÂÊÀ¸·Î ³õ´Â°ÍÀÌ´Ù. var height = t_height + 150; //»ó´ÜºÎÅÍ ¶ç¿ö¾ß ÇÏ´Â ³ôÀÌ //alert(width); jQuery("#quick_menu_div").css({top:height, left:w, display:'block'}); var currentPosition = parseInt(jQuery("#quick_menu_div").css("top")); jQuery(window).scroll(function() { var position = jQuery(window).scrollTop(); // ÇöÀç ½ºÅ©·Ñ¹ÙÀÇ À§Ä¡°ªÀ» ¹ÝȯÇÕ´Ï´Ù. jQuery("#quick_menu_div").stop().animate({"top":position+currentPosition+"px"},1000); }); });