사용자 도구

사이트 도구


html:html5

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
html:html5 [2011/08/02 13:08]
kwon37xi
html:html5 [2013/10/17 17:44] (현재)
kwon37xi
줄 1: 줄 1:
 ====== HTML5 ====== ====== HTML5 ======
 +  * [[http://www.html5rocks.com/ko/|HTML5Rocks]]
 +  * [[http://developers.facebook.com/html5|Facebook HTML5 Resources]]
 +  * [[http://diveintohtml5.info/|Dive Into HTML5]]
   * [[http://html5test.com/|The HTML5 test - How well does your browser support HTML5?]]   * [[http://html5test.com/|The HTML5 test - How well does your browser support HTML5?]]
   * [[http://www.html5rocks.com/mobile/mobifying.html|모바일에 맞게 HTML5 수정하기]]   * [[http://www.html5rocks.com/mobile/mobifying.html|모바일에 맞게 HTML5 수정하기]]
-  * [[http://code.google.com/p/html5shiv/|HTML5 shiv]] : IE8 이하에서 HTML5 엘리먼트를 사용할 수 있도록 교정 
   * [[http://www.webdesignerdepot.com/|HTML 5 Resource Guide]]   * [[http://www.webdesignerdepot.com/|HTML 5 Resource Guide]]
   * [[http://www.wah.or.kr/Board/brd_view.asp?page=1&brd_sn=4&brd_idx=585|실전 HTML5 가이드]] [[http://webstandards.or.kr/html5/|2]]   * [[http://www.wah.or.kr/Board/brd_view.asp?page=1&brd_sn=4&brd_idx=585|실전 HTML5 가이드]] [[http://webstandards.or.kr/html5/|2]]
줄 11: 줄 13:
   * [[http://html5doctor.com/avoiding-common-html5-mistakes/|Avoiding common HTML5 mistakes | HTML5 Doctor]]   * [[http://html5doctor.com/avoiding-common-html5-mistakes/|Avoiding common HTML5 mistakes | HTML5 Doctor]]
   * [[http://msdn.microsoft.com/ko-kr/library/gg491737(v=VS.85).aspx|Internet Explorer 9 HTML5/CSS3 샘플 및 자습서 (Windows)]]   * [[http://msdn.microsoft.com/ko-kr/library/gg491737(v=VS.85).aspx|Internet Explorer 9 HTML5/CSS3 샘플 및 자습서 (Windows)]]
 +  * [[http://www.sitepoint.com/html5-javascript-file-upload-progress-bar/|How to Create Graphical File Upload Progress Bars in HTML5 and JavaScript » SitePoint]]
 +  * [[http://sixrevisions.com/html/introduction-web-storage/|Introduction to HTML5 Web Storage]]
 +  * [[https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-browser-Polyfills|HTML5 Cross Browser Polyfills]]
 +  * [[http://html5please.us/|HTML5 Please - Use the new and shiny responsibly]]
 +  * [[http://blog.saltfactory.net/201|saltfactory's blog :: HTML5의 selectors API로 jQuery selector 대신하기]]
 +  * [[http://net.tutsplus.com/tutorials/html-css-techniques/a-first-look-at-the-history-api/|How to Use HTML5 History]]
 +  * [[http://www.pearltrees.com/#/N-fa=5052200&N-play=1&N-u=1_633582&N-p=65790802&N-s=1_5052200&N-f=1_5052200|pearltrees • yunsangbae • HTML5 자바스크립트 API]]
 +  * [[http://www.sitepoint.com/6-useful-html5-tools/|6 Useful HTML5 Tools]]
 +===== 구버전(IE8이하)에서 HTML5 엘리먼트 인식시키기 =====
 +기본 원리는 JavaScript로 HTMLT5 엘리먼트를 생성해주는 것이다.
 +  * [[http://code.google.com/p/html5shiv/|HTML5 shiv]] : IE8 이하에서 HTML5 엘리먼트를 사용할 수 있도록 교정
 +  * 직접 해보기<code html>
 +<!--[if lt IE 9]>
 +<script type="text/javascript">
 +document.createElement('nav');
 +document.createElement('header');
 +document.createElement('footer');
 +document.createElement('section');
 +document.createElement('aside');
 +document.createElement('article');
 +....
 +</script>
 +<![endif]-->
 +</code>
 +
 +===== HTML5 프로젝트 시작하기 =====
 +  * [[http://www.initializr.com/|Initializr - Start an HTML5 Boilerplate project in 15 seconds!]]
 +  * [[http://html5boilerplate.com/|HTML5 Boilerplate: The web's most popular front-end template]]
 +
html/html5.1312258118.txt.gz · 마지막으로 수정됨: 2011/08/02 13:08 저자 kwon37xi