E D R , A S I H C RSS

Full text search for "html5"

html5


Search BackLinks only
Display context of search results
Case-sensitive searching
  • html5/webSqlDatabase . . . . 33 matches
         [[pagelist(html5)]]
          * SeeAlso) [html5/web-storage]
          * 로컬 저장소의 일부. [html5/web-storage]외에 추가 제공되는 것.
          * SeeAlso) [html5/indexedDatabase]
         var html5rocks = {};
         html5rocks.webdb = {};
         html5rocks.webdb.db = null;
         html5rocks.webdb.open = function() {
          html5rocks.webdb.db = openDatabase('Todo', '1.0', 'todo manager', dbSize);
         html5rocks.webdb.onError = function(tx, e) {
         html5rocks.webdb.onSuccess = function(tx, r) {
          html5rocks.webdb.getAllTodoItems(tx, r);
         html5rocks.webdb.createTable = function() {
          html5rocks.webdb.db.transaction(function(tx) {
         html5rocks.webdb.addTodo = function(todoText) {
          html5rocks.webdb.db.transaction(function(tx){
          html5rocks.webdb.onSuccess,
          html5rocks.webdb.onError);
         html5rocks.webdb.getAllTodoItems = function(renderFunc) {
          html5rocks.webdb.db.transaction(function(tx) {
  • html5practice . . . . 9 matches
          * SeeAlso) [html5]
         [[pagelist(html5practice/*)]]
          * [html5practice/즐겨찾기목록만들기] : [html5/web-storage] 활용 - 이승한
          * [html5practice/roundRect] : [html5/canvas] 활용 - 이승한
          * [html5practice/계층형자료구조그리기] : [html5/canvas] 활용 - 이승한
          * 프리마인드 파일 html5로 렌더링 하기
  • html5 . . . . 7 matches
         [[pagelist(^html5//*)]]
          * html5 연습 코드는 [html5practice] 에 있습니다.
          * http://slides.html5rocks.com/#slide49
          * 가장 좋은 api reference는 http://dev.w3.org/html5/ 입니다.
          * [http://simon.html5.org/html5-elements w3g HTML5 레퍼런스들을 목차로 잘 정리해 놓았다.]
  • html5/form . . . . 7 matches
         [[pagelist(html5)]]
          * HTML5 의 Canvas를 지원하지 않는 IE8 이전 버전을 위해 ExplorerCanvas(http://code.google.com/p/explorercanvas/) 라이브러리가 제공되듯이 HTML5 확장 폼을 지원하지 않는 브라우저의 경우 WebForm2 라이브러리를 사용할만 하다
          * WebForms2 라이브러리는 HTML 폼 확장에 대해 각 브라우저마다 다르게 동작하는 문제점을 극복하기 위해 제공되며 Cross Broswer HTML5 Form 구현을 가능하도록 해 준다. 이와 관련한 다음의 글을 참고해 보기 바란다
          * http://nz.pe.kr/wordpress/programming/html5/번역-지금-바로-cross-browser-html5-form-만드는-방법
          * http://www.w3schools.com/html5/html5_form_input_types.asp
          * [http://diveintohtml5.org/forms.html form of madness]
          * [http://www.w3.org/TR/html5-diff/ w3c:HTML5 differences from HTML4]
  • html5/canvas . . . . 5 matches
         [[pagelist(html5/)]]
          * http://dev.w3.org/html5/canvas-api/canvas-2d-api.html
          * [http://simon.html5.org/dump/html5-canvas-cheat-sheet.html HTML5 canvas cheat sheet]
          * [http://diveintohtml5.org/canvas.html#divingin canvas에 관한 아주 자세한 설명] 어떻게 그려지는지에 대해서는 이곳에서 물어보면 대부분 해결 될 듯
          * [http://efreedom.com/Question/1-3684492/Html5-Canvas-Framerate framerate 측정 코드]
  • html5/drag-and-drop . . . . 4 matches
         [[pagelist(^html5)]]
          * HTML5에서는 드래그 & 드롭 API를 제공한다.
          * http://html5tutorial.net/tutorials/drag-and-drop.html
          * http://html5demos.com/file-api
          * http://dev.w3.org/html5/spec/dnd.html
  • html5/others-api . . . . 4 matches
         [[pagelist(html5)]]
          * HTML5는 사용자의 편의를 위한 다양한 요소를 제공한다.
          * html5오면서 변화한점은 이전에 비해 embed엘리먼트가 정식등록된점-그전까지는 object 엘리먼트로 대체하도록
          * 루비주석을 다는엘리먼트로 텍스트위에 주석을 달아준다 html5에서 새로 생긴 엘리먼트이다.
          * http://www.w3.org/TR/html5/microdata.html
  • html5/outline . . . . 3 matches
         [[pagelist(html5)]]
         == HTML5와 이전 문서의 차이 ==
         === before HTML5 ===
         === HTML5 ===
          * http://www.webguru.pe.kr/zbxe/files/attach/images/2848/655/824/structure-html5.gif
          * body가 section root임. HTML5의 컨텐츠는 모두 section에 포함된다는 것을 유추 가능
          * [http://gsnedders.html5.org/outliner/ HTML5 Outliner]
  • html5practice/계층형자료구조그리기 . . . . 3 matches
         [[pagelist(html5practive)]]
         var RootNode = {"text":"hello html5", "child":[{"text":"html5 is gooooooood", "child":null}
  • ZeroPage_200_OK . . . . 2 matches
          * HTML5
          * CSS3 (with HTML5)
          * form 관련으로 사용자 입력을 받을 수 있었던 부분 실습을 주로 배웠습니다. 근데 궁금한게 도중에 html5 얘기를 하시면서 <a href=""><button>abc</button></a> html5에서는 이렇게 사용할 수 있는데 이런게 자바스크립트를 쓸 수 없는 경우에 된다고 하셨는데 그럼 원래 버튼의 onclick같은 on~는 자바스크립트인건가요? - [서영주]
  • html5/geolocation . . . . 2 matches
         [[pagelist(html5)]]
          * http://html5demos.com/
  • pinple . . . . 2 matches
         HTML5 공모전 동상
         ajax, [websoket], [wiki:html5/geolocation geolocation], [wiki:html5/canvas canvas], google map
  • ZeroPage . . . . 1 match
          * 2012 HTML5 앱 공모전 '''동상'''(상금 150만원)[http://www.koreahtml5.kr 링크]
  • html5/VA . . . . 1 match
         [[pagelist(html5)]]
          * HTML5를 지원하는 브라우저에서 사용할 수 있다.
  • html5/communicationAPI . . . . 1 match
         [[pagelist(^html5)]]
          * [HTML5 스터디 카페] http://cafe.naver.com/webappdev.cafe
  • html5/offline-web-application . . . . 1 match
         [[pagelist(html5)]]
  • html5/overview . . . . 1 match
         [[pagelist(^html5)]]
         = HTML5 개요 =
          * 기존의 HTML : 문서를 위한 플랫폼, HTML5 : 웹 어플리케이션을 위한 플랫폼
         == HTML5 범위 ==
          * HTML5 : HTML과 XHTML은 표현되는 문법의 차이, HTML5는 DOM에 따라 표시됨
          * 전방호환성 - HTML5을 적용하기 이전의 브라우저에서도 HTML5사용가능(웹브라우저의 fall back 적용)
          * 후방호환성 - HTML5을 적용한 브라우저에서 HTML5 이전 버전 문서 표시가능
         * 그러자 apple, mozillar, opera 세 기업이 모여 WHATWG를 발족하고 HTML의 진화를 지향한다.(apple은 플래시를 제공하는 어도비와 관계가 좋지않아 HTML5를 적극적으로 추진한다는 소문이다)
         * 현재 HTML5는 W3C에 LAST CALL(최종 심사 초안)이 제출된 상태이다. 또한 W3C가 진행하던 XHTML2의 사양 제정이 중지로 HTML5의 표준화는 기정 사실로 보인다.
  • html5/richtext-edit . . . . 1 match
         [[pagelist(html5)]]
          * HTML5는 리치텍스트 편집용 API를 표준으로 규정한다.
  • html5/section . . . . 1 match
         #redirect html5/outline
  • html5/video&audio . . . . 1 match
         [[pagelist(html5)]]
          * HTML5를 지원하는 브라우저에서 사용할 수 있다.
  • html5/web-storage . . . . 1 match
         [[pagelist(html5)]]
  • html5/문제점 . . . . 1 match
         [[pagelist(html5)]]
         == HTML5가 RIA 대체하기 위해 처리해야 할 문제 ==
          * HTML5는 2012년에야 초안 단계에 이를 것이며 완전한 인증을 받을 것은 2022년이 될 것으로 예상.
          * 현 상황에서 HTML5의 비디오가 Flash의 비디오를 대체하기는 어려움(비디오 코덱과 (비디오 코덱을 담는)컨테이너의 문제)
          * HTML5는 audio, video, canvas만 알려져 있는데,
          * HTML5는 마크업 언어(프로그래밍 언어X)로서 브라우저에만 해당 되지만
          * HTML5는 디바이스 상호 작용(캠이나 마이크 지원 x)이 불가능하다.
          * HTML5 표준 스펙은 구글과 애플의 엔지니어에 의해 주도되고 있으며 그들의 이익에 따라 표준을 움직이고 있다.
  • html5practice/roundRect . . . . 1 match
         [[pagelist(html5practice)]]
  • html5practice/즐겨찾기목록만들기 . . . . 1 match
         [[pagelist(html5practice/*)]]
  • 김수경 . . . . 1 match
          * [html5]
  • 서지혜 . . . . 1 match
          * [:html5 HTML5 스터디]
          * 새로운 기술 HTML5를 알아보는 시간
  • 정모/2011.8.8 . . . . 1 match
          * html5에 있는 Canvas를 이용해 웹 그림판을 만들고 있습니다. 다들 여러가지 기능을 추가중입니다.
Found 27 matching pages out of 7540 total pages (5000 pages are searched)

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:31:40
Processing time 0.2843 sec