ブックマーク / webtech-walker.com (1)

  • iOS4.2の加速度センサ試してみたよ - Webtech Walker

    iOS4.2はSafariの機能も大幅にバージョンアップしてますね。その中でも特に目玉なのがWebSokectと加速度センサのサポートだと思います。早速加速度センサのほうのDemoなどつくってみました。 DEMO for iOS 使い方は簡単で window.addEventListener('devicemotion', function(evt) { console.log(evt.accelerationIncludingGravity.x); //=> x console.log(evt.accelerationIncludingGravity.y); //=> y console.log(evt.accelerationIncludingGravity.z); //=> z }); これだけです。 WebSocketと加速度センサのサポートはWebアプリつくっている人からするとか

    iOS4.2の加速度センサ試してみたよ - Webtech Walker
    HTMax
    HTMax 2010/11/24
  • 1