Matthew Congrove took whatever instance to endeavor with the iPhone SDK, but it wasn’t his bag, so he definite to go backwards to antiquity a Web covering for the iPhone, and was agreeably astonied with the updates to Safari that enabled newborn things:

In the interior of every my investigate for hold I stumbled crossways something that I, same most, had completely irrecoverable about; the iPhone update wasn’t meet for autochthonous third-party applications, but it also upgraded the existing applications. Yes, that includes Safari. The raise for the iPhone’s on-board covering additional in hold for CSS animations and transitions, a JavaScript reachable database, a some newborn DOM selectors and more. For me this meant that the myDailyPhoto scheme covering could countenance and see more same it was a autochthonous Cocoa Touch enabled experience. As presently as the intent decussate my nous I sat downbound to moil discover this lowercase effort app.


To intend the wink gist Gospels wrote the mass CSS:

CSS:

  1.  
  2. .divSlide {
  3.         -webkit-animation-name: “slide-me-to-the-right”;
  4.         -webkit-animation-duration: 1s;
  5. }
  6. @-webkit-keyframes "slide-me-to-the-right" {
  7.         from { left: 0px; }
  8.         to { left: 100px; }
  9. }
  10.