Skip to content

Instantly share code, notes, and snippets.

@dstyle0210
dstyle0210 / gist:de2bb9a7d62d8e1482e4
Last active August 29, 2015 14:04
[동작확인필요함] $.browser 생성.
$.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 ) ||
@dstyle0210
dstyle0210 / gist:93da06b4ca70b23e0f12
Last active August 29, 2015 14:04 — forked from ace4gi/gist:e17606372925af0510b7
나눔고딕 로딩 크로스브라우징 스크립트
/*
구글API로 로딩이 되면,
font-family에 대해서 한글이 아닌 Nanum Gothic 으로 적용해야 함.
그렇게 하지 않으면, 나눔고딕이 미리 깔린 PC에서는 PC용 나눔고딕을 우선시하여 로딩하게 됨.
본코드의 장점 : 나눔고딕의 중국어가 호환되지 않는 현상 해결.
CSS는 미리 선언
@dstyle0210
dstyle0210 / gist:8770d7e314e0491cd9a1
Created July 25, 2014 14:49
파이어폭스 전용 핵.
/* 파이어폭스 핵 */
@-moz-document url-prefix(){/* firefox only */}
@dstyle0210
dstyle0210 / gist:1cfb5e49ba2361aade99
Last active August 29, 2015 14:04
게시판의 제목 또는 한줄의 말줄임표 CSS
/* 게시판의 제목 */
a{display :inline-block; overflow:hidden;text-overflow: ellipsis;white-space :nowrap; max-width:100%;}
.tts { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);}
@dstyle0210
dstyle0210 / gist:90b2ac64486c3e40c3c7
Created July 25, 2014 15:32
vertical-align 적용.
#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%;}
@dstyle0210
dstyle0210 / new_gist_file.css
Created July 25, 2014 21:06
box-sizing CSS3속성, 보더사이즈를 박스의 width인정함.
*{
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
// 업무할때 사용하는 사이트들.
http://caniuse.com/
http://www.w3schools.com/
// 새로운 폰에 따른 스펙정리 사이트
http://www.phonearena.com/new-phones
// 모바일 웹뷰 확인
http://troy.labs.daum.net/
@dstyle0210
dstyle0210 / gist:b105b613be36c04b252b
Last active August 29, 2015 14:04 — forked from ace4gi/gist:a11a55b4ae52fbd309dc
모바일 즐겨찾기 아이콘 적용 : shortcut icon
<!--
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 -->
@dstyle0210
dstyle0210 / jquery.preloader
Last active August 29, 2015 14:04
preloader 이미지 프리로더
/*
jQuery.fn.extend({
preload:function(){
}
});
preload: function(selector, parameters) {
var params = {
delay: 250,