Category Archives: PhoneGap

UPDATE: Fix: CSS Animation slow or choppy in mobile browsers

Original post: http://chrissilich.com/blog/fix-css-animation-slow-or-choppy-in-mobile-browsers/ Even better than just adding this code to all the elements you want sped up… -webkit-transform: translateZ(0); Use -webkit-transform: translate3d() to do all your animations, instead of left, right, top, bottom, margin, or padding properties. -webkit-transform: translate3d(50%, … Continue reading

Posted in CSS, General, HTML/CSS, HTML5, iOS, PhoneGap | Tagged , , , , , , , , , , , | 1 Comment

Fix: CSS Animation slow or choppy in mobile browsers

I’m developing an iPhone app using the PhoneGap library, which lets you write your app as if it were a website. That means any UI transitions or animations have to be written the way you would for any modern website … Continue reading

Posted in HTML/CSS, HTML5, iOS, Javascript, jQuery, PhoneGap | Tagged , , , , , , , , , | 6 Comments

Socket.io 0.7 – Sending messages to individual clients

Note that this is just for Socket.io version 0.7, and possibly higher if they don’t change the API again. I’m writing an iPhone app right now using PhoneGap and jQuery Mobile on the phone, and node.js and socket.io on an … Continue reading

Posted in HTML/CSS, iOS, Javascript, Node, PhoneGap, socket.io | Tagged , , , , , , , , , , , | 12 Comments