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
| $.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(); | |
| var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) || |
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
| /* | |
| 구글API로 로딩이 되면, | |
| font-family에 대해서 한글이 아닌 Nanum Gothic 으로 적용해야 함. | |
| 그렇게 하지 않으면, 나눔고딕이 미리 깔린 PC에서는 PC용 나눔고딕을 우선시하여 로딩하게 됨. | |
| 본코드의 장점 : 나눔고딕의 중국어가 호환되지 않는 현상 해결. | |
| CSS는 미리 선언 |
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
| /* 파이어폭스 핵 */ | |
| @-moz-document url-prefix(){/* firefox only */} |
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
| /* 게시판의 제목 */ | |
| a{display :inline-block; overflow:hidden;text-overflow: ellipsis;white-space :nowrap; max-width:100%;} |
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
| .tts { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);} |
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
| #itemDetail #detailImg {width: 560px;height: 600px; display:table; overflow:hidden; background: #fff;#position: relative;} | |
| #itemDetail #detailImg p { #position: absolute; #top: 50%; display:table-cell; width:100%; text-align:center; vertical-align:middle;} | |
| #itemDetail #detailImg p span {#position: relative; #top: -50%;} |
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
| *{ | |
| box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| -webkit-box-sizing: border-box; | |
| } |
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
| // 업무할때 사용하는 사이트들. | |
| http://caniuse.com/ | |
| http://www.w3schools.com/ | |
| // 새로운 폰에 따른 스펙정리 사이트 | |
| http://www.phonearena.com/new-phones | |
| // 모바일 웹뷰 확인 | |
| http://troy.labs.daum.net/ |
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
| <!-- | |
| icon 만들기 : http://iconverticons.com/online/ | |
| 아이폰 : apple-touch-icon | |
| 안드로이드 : shortcut icon | |
| --> | |
| <link rel="shortcut icon" href="${cp}/images/common/app_icon1.icon" /><!-- size:48x48 --> | |
| <link rel="apple-touch-icon" href="${cp}/images/common/app_icon2.png" /><!-- size:114x114 --> |
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.fn.extend({ | |
| preload:function(){ | |
| } | |
| }); | |
| preload: function(selector, parameters) { | |
| var params = { | |
| delay: 250, |
OlderNewer