본문 바로가기

Web

[CSS3] css를 활용한 기본 애니메이션 더보기
[css3] :first-of-type :first-of-type = :nth-of-type(1) :first-child 와 :first-of-type 의 해석차이를 도통 이해할 수 없다. first-of-type은 부모중 첫번째 요소?? first-child는 부모의 첫번째 자식인 모든 요소를 말하는데... 흠... css3와 css2의 차이로만 일단 알아놔야겠다.. 더보기
[html5] <hgroup> 태그 제목 요소들을 묶어줄 때 태그를 사용한다. ~ 요소들을 묶어서 레벨 단위로 표시한다. 1 2 3 4 5 6 Welcome to my WWF For a living planet The rest of the content... 더보기
[html5] 기본 계층 구조 html5의 기본 계층 구조 http://codepen.io/nodws/blog/html5-hierarchy 더보기
랜덤으로 이미지 출력하기 function randomImage(){ var bannerImages=new Array(); bannerImages[0]="이미지경로"; bannerImages[1]=""; bannerImages[2]=""; var bannerlink = new Array(); bannerlink[0] = "링크"; bannerlink[1] = ""; bannerlink[2] = ""; var bannerTitle = new Array(); bannerTitle[0] = ""; bannerTitle[1] = ""; bannerTitle[2] = ""; var bannerAlt = new Array(); bannerAlt[0] = ""; bannerAlt[1] = ""; bannerAlt[2] = ""; var ran.. 더보기
모바일에서 자주 쓰이는 속성모음 text-overflow : ellipsis; 더보기
정규식을 사용해 html 태그 제거하기 자바스크립트 정규식을 이용하여 html 태그를 제거해보자. 1. 모든 태그 제거하기. 방법 1) str.replace(/]*)?(\s)*(\/)?>/g,""); 방법 2) var tmpStr = new RegExp(); tmpStr = /[]*[>]/gi; str.replace(tmpStr , ""); 방법 3)]*)?(\\s)*(/)?> 예) text = "......";textWithoutTag = text.replaceAll("]*)?(\\s)*(/)?>", ""); 2. 태그 제거하기. str.replace(//g,"");[출처] 자바스크립트 html태그 제거하기 |작성자 Keito 3. 태그 제거하기. str.replace(/[]/gi,"\n"); 4. 정규식을 이용한 태그 삭제하기. str.r.. 더보기
input type=checkbox, radio 세로 정렬 http://blog.daum.net/0fantasy/54 더보기