JQuery 9

javascript profile

이래 저래 jQuery plugin 이나 jUnit 등을 설치할까 하다가 그냥 만들어 버렸다. 1시간이다. 이런 허접 스런... /** * @authoruncaose@gmail.com */ profile = { lists : [ { name: '### start', time:(new Date().getTime()), startDelay: 0, delay : 0, from : { name : null, delay: -1 } } ], getTime : function(){ return (new Date().getTime()); }, set : function(name, from){ var name = name, from = from||null, fromDelay = -1, time = this.getTime..

lang/js 2012.05.25

javascript 이미지에 그레이스케일(grayscale) 적용

현재 프론트개발은 jquery로 개발중인 관계로 "jquery 이미지 gray 적용"으로 구글링 했습니다. 검색 : jquery 이미지 gray 적용 그레이스케일 소개 페이지 : “GRAYSCALING” IN NON-IE BROWSERS 데모 페이지 : http://james.padolsey.com/demos/grayscale/ 소스 : http://james.padolsey.com/demos/grayscale/grayscrle.js/view 사용법 var el = document.getElementById( 'myEl' ); grayscale( el ); # jQuery 에서 $(this) 가 이미지일 경우 적용 grayscale( $(this) ); jQuery Plugin 에서 grayscale 검..

lang/js 2010.07.31

jQuery가 지원하는 고급 위치 기반 셀렉터

jQuery가 지원하는 고급 위치 기반 셀렉터. DOM에서 위치를 기반으로 엘리먼트를 선택한다. 셀렉터 설명 :first 페이지에서 처음으로 일치하는 엘리먼트. li a:first는 리스트 아이템의 첫 번째 링크를 반환한다. :last 페이지 마지막으로 일치하는 엘리먼트. li a:last는 리스트 아이템의 마지막 링크를 반환한다. :frist-child 첫 번째 자식 엘리먼트. li:first-child는 각 리스트의 첫 번째 아이템을 반환한다. :last-child 마지막 자식 엘리먼트. li:last-child는 각 리스트의 마지막 아이템을 반환한다. :only-child 형제가 없는 모든 엘리먼트를 반환한다. :nth-child(n) n번째 자식 엘리먼트. li:nth-child(2)는 각 리스트..

lang/jquery 2010.07.30

jquery bookmarklet 생성기

google code 에서 jquery를 활용해서 bookmarklet을 쉽게 구현할 수 있다. 하지만 IE8에서는 동작이... 안됨. 아니면 내 컴터만 안되는건가? javascript:( function(e,a,g,h,f,c,b,d){ if(!(f=e.jQuery)||g>f.fn.jquery||h(f)){ c=a.createElement("script"); c.type="text/javascript"; c.src="http://ajax.googleapis.com/ajax/libs/jquery/"+g+"/jquery.min.js"; c.onload=c.onreadystatechange=function(){ if(!b&&(!(d=this.readyState)||d=="loaded"||d=="complete..

lang/jquery 2010.07.20
반응형