Category Archives: iOS

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

Prevent Mobile Safari from zooming in when device rotates

So you’re making a mobile version of a website and you get it perfectly laid out for iOS handhelds in portrait mode. You’re using LiveView Screencaster to send your designs to you phone to see how they’ll look at actual … Continue reading

Posted in General, HTML/CSS, HTML5, iOS | Tagged , , , , , , , , | 2 Comments

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

iOS Device Provisioning – Why is this so hard?

XCode could not find a valid private certificate/valid key-pair for this profile in your keychain This message had me on the ropes for over an hour the other day. Getting one iPhone provisioned for development on two different macs is … Continue reading

Posted in General, iOS | 10 Comments