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
| if( ! window.console ){ console = { log : function(){} }; } |
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($) { | |
| $.extend({ | |
| // jquery 브라우저 구분 코드 (jquery 1.8.3 버전의 jQuery.broswer) | |
| // 아래의 코드가 필요하면 자신의 클래스에 붙여서 사용하면됨~! | |
| // Use of jQuery.browser is frowned upon. | |
| // More details: http://api.jquery.com/jQuery.browser | |
| // jQuery.uaMatch maintained for back-compat | |
| browser : (function(){ | |
| function uaMatch( ua ) { | |
| ua = ua.toLowerCase(); |
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($){ | |
| 'use strict'; | |
| if (!Raphael) { throw new Error("jquery.PluginName.js - requires xxx"); } | |
| var PluginName = function(element, _options){ | |
| this.$element = $(element); | |
| this.options = _options; | |
| } |
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
| // $('img.photo',this).imagesLoaded(myFunction) | |
| // execute a callback when all images have loaded. | |
| // needed because .load() doesn't work on cached images | |
| // mit license. paul irish. 2010. | |
| // webkit fix from Oren Solomianik. thx! | |
| // callback function is passed the last image to load | |
| // as an argument, and the collection as `this` |
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
| $(document).ready(function(){ | |
| if( $("body").hasClass("layout-static") ){ | |
| return; | |
| } | |
| var $wrap = $("#contwrap"); | |
| var $header = $wrap.find(">header:first"); | |
| var $footer = $wrap.find(">footer:first"); | |
| var $container = $("#container"); | |
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
| html - <head> | |
| (function($){ | |
| var userAgent = navigator.userAgent.toLowerCase(); | |
| if( userAgent.indexOf('safari') != -1 && userAgent.indexOf('version') != -1 ){ | |
| // safari(중문표현 가능한 나눔고딕 폰트로 대체(.ttf, .otf) | |
| document.write('<link href="${cp}/css/webFont.css" rel="stylesheet" type="text/css" />'); | |
| }else{ | |
| document.write('<style type="text/css">@import url(https://fonts.googleapis.com/earlyaccess/nanumgothic.css);</style>'); |
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
| <!DOCTYPE html> | |
| <html lang="ko"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, target-densitydpi=medium-dpi" /> | |
| <meta name="format-detection" content="telephone=no" /> | |
| <link rel="shortcut icon" href="http://html5.cafe24.com/favicon48x48.ico" /><!-- size:48x48 --> | |
| <link rel="apple-touch-icon" href="http://html5.cafe24.com/favicon114x114.png" /><!-- size:114x114 --> | |
| </head> |
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
| /* 단어잘림 테스트 */ | |
| word-break: break-all; /* 모든 단어 짤림 */ | |
| word-wrap: break-word; /* 화면을 긴 단어 짤림(예:url) */ | |
| /* 한글/영문 단어 유지하면서 양쪽 정렬하기 */ | |
| /* ie8 확인했음 */ | |
| word-break:keep-all; text-align:justify; |
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
| jQuery({count:0}).animate({count:1}, { | |
| duration: 1000, | |
| progress: function() { | |
| console.log( this.count ); | |
| } | |
| }); |
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
| @charset "UTF-8"; | |
| @font-face { | |
| font-family:NanumBarunGothic; font-style:normal; font-weight:600; | |
| src:url(/mart/common/font/NanumBarunGothicBold.eot); | |
| src:url(/mart/common/font/NanumBarunGothicBold.eot?#iefix) format('embedded-opentype'), url(/mart/common/font/NanumBarunGothicBold.woff) format('woff'), url(/mart/common/font/NanumBarunGothicBold.ttf) format('truetype'); | |
| } | |
| @font-face { | |
| font-family:NanumBarunGothic; font-style:normal; font-weight:400; | |
| src:url(/mart/common/font/NanumBarunGothic.eot); |
OlderNewer