// JavaScript Document /** * ¿òÁ÷ÀÌ´Â ¹è³Ê Jquery Plug-in * @author cafe24 */ ;(function($){ $.fn.floatBanner = function(options) { options = $.extend({}, $.fn.floatBanner.defaults , options); return this.each(function() { var aPosition = $(this).position(); var node = this; $(window).scroll(function() { var _top = $(document).scrollTop(); _top = (aPosition.top < _top) ? _top : aPosition.top; setTimeout(function () { $(node).stop().animate({top: _top}, options.animate); }, options.delay); }); }); }; $.fn.floatBanner.defaults = { 'animate' : 500, 'delay' : 500 }; })(jQuery); /** * ¹®¼­ ±¸µ¿ÈÄ ½ÃÀÛ */ $(document).ready(function(){ $('#banner, #quick').floatBanner(); }); /** * ½æ³×ÀÏ À̹ÌÁö ¿¢¹ÚÀÏ°æ¿ì ±âº»°ª ¼³Á¤ */ $(window).load(function() { $("img.thumb,img.ThumbImage,img.BigImage").each(function($i,$item){ var $img = new Image(); $img.onerror = function () { $item.src="//img.echosting.cafe24.com/thumb/img_product_big.gif"; } $img.src = this.src; }); });