반응형
jQuery Cheat Sheet: A quick API reference

 

This colorful jQuery Cheat Sheet is your one-stop reference for the jQuery API. It covers selectors, attributes, CSS, events, effects, and much more.

jquery

 

반응형
반응형

Bumpkit: A library for the Web Audio API

Bumpkit is a still-in-progress DAW-inspired library for the Web Audio API. It lets you create mixers, sampler instruments, and more.

bumpkit

 

Basics

Create a mixer with two tracks

var mixer = bumpkit.createMixer().addTrack().addTrack();

Create a new Sampler instrument and load an audio buffer

var sampler = bumpkit.createSampler().connect(mixer.tracks[0]);

bumpkit.loadBuffer('/audio/clap.mp3', function(buffer) {
  sampler.buffer(buffer);
});


 

 

 

 

반응형
반응형

Mithril: A JavaScript application framework

Mithril is a framework for building awesome JavaScript applications. It’s only 3kb gzipped, has no dependencies, has a small API, is easy to learn, and has safe-by-default templates.

mithril


Mithril  - http://lhorie.github.io/mithril/

A Javascript Framework for Building Brilliant Applications

See the website for documentation

 

 

반응형
반응형

Google Maps API for Designers

 

반응형
반응형

Google Maps API 웹 서비스

 

Google Geocoding API

반응형

'프로그래밍 > Web' 카테고리의 다른 글

[WEB] http://www.firepad.io/-  (0) 2013.04.15
placeholder 에서 줄내림(NewLine) 사용하기  (0) 2013.04.11
DOM Reference - 레퍼런스  (0) 2013.03.28
[Sencha] Sencha Touch 2 설치 - install.sh  (0) 2013.03.14
[APTANA] ftp setting  (0) 2013.03.13
반응형

HTML5 기초, Part 3: HTML5 API의 기능

출처 : http://www.ibm.com/developerworks/kr/library/wa-html5fundamentals3/index.html#web-workers
 HTML5는 웹과 클라우드에서 현재 독자가 비즈니스를 하는 방식 면에서 획기적인 변화를 반영합니다. 이 기사는 HTML5의 변화에 대한 관심을 끌기 위해 구성되었으며 총 네 파트로 소개되는 시리즈 중 세 번째 파트입니다. 새 태그와 페이지 구성을 시작으로, 웹 페이지 설계에 대한 높은 수준의 정보, 양식의 작성, API의 사용 및 가치, 마지막으로 Canvas가 제공하는 창의적인 기회를 제시합니다. 이번 기사에서는 함수를 시연하는 예제 페이지를 사용하여 HTML5 API를 소개합니다.

목차


반응형

+ Recent posts