본문 바로가기

Local Oriented

(251)
Overlay 오버레이, 레이어 팝업 http://flowplayer.org/tools/demos/overlay/multiple.html 오버레이
[모음글] 풍선 도움말 Tooltip http://flowplayer.org/tools/demos/tooltip/index.html http://vadikom.com/demos/poshytip/ MIT GPL 라이센스
jQuery, 영역 범위 좌표 width height *. http://uix.kr/archives/649 - .height(), .width() : margin, border, padding 제외한 수치. 순수 element 영역 IE 에서 만약 element 가 꽉채워지지 않았다면 .height() 값은 세팅된 수치와 다를 수 있다. .width() 는 IE 에서도 세팅된 수치와 동일 Chrome 에선 .width() 나 .height() 모두 elelment 과 꽉채워지건 아니건 세팅된 수치와 동일 - .innerHeight(), .innerWidth() : margin, border 제외한 수치. element 와 padding 포함 영역. .height() 에 padding-top + padding-bottom 를 더한 값과 .width() 에 p..
jquery corner 둥글거나 각야 모양을 낸 모서리 http://jquery.malsup.com/corner/
jquery Block o 페이지 전체 또는 일정한 공간에 블럭 만드는 플러그인 http://jquery.malsup.com/block/#overview
jQuery 플러그인, input mask 입력 마스크 o http://digitalbush.com/projects/masked-input-plugin/ 무료
jQuery 1.7.x .on() VS .one() .bind() .live() .delegate() 그리고 mobileinit http://www.elijahmanor.com/2012/02/differences-between-jquery-bind-vs-live.html - one() 이미 명시된 요소에 대한 이벤트 1회 실행- bind() 이미 명시된 요소에 대한 이벤트 발생시 마다 실행- live() 동적으로 생성될 요소에 대한 이벤트 발생시 마다 실행- mobileinit() jquery 와 jquerymobile 자바스크립트 사이에서 정의하고 1회만 실행$(document).live('mobileinit',function(){ ... }); 와 같이 정의. http://happyourlife.com/170live VS die, live VS delegate, delegate VS undelegate
jquery index - $('..').index(this) http://pyungyi.blogspot.com/2012/01/jquery.html