What's also intriguing is this code snippet showing animation using CSS3

   1. @-webkit-keyframes pulse {
   2.   0% {
   3.     opacity: 1.0;
   4.   }
   5.   40% {
   6.
       opacity: 0.25;
   7.   }
   8.   100% {
   9.     opacity: 1.0;
   10.   }
   11. }
   12. #map_canvas div[style*="blue_dot_circle.png"] {
   13.   -webkit-animation-name: pulse;
   14.   -webkit-animation-duration: 2s;
   15.   -webkit-animation-iteration-count: infinite;
   16.   -webkit-animation-timing-function: ease-in-out;
   17. }




On Tue, Aug 25, 2009 at 2:57 PM, Henry Minsky <[email protected]>wrote:

> Yow, there's a little article on how to do a Google map app
>
> http://plebeosaur.us/you-are-here-with-safari-on-iphone/
>
> I wonder if I can loadd the Google maps DHTML library into
> a Laszlo app (on the iPhone).
>
>
>
> On Tue, Aug 25, 2009 at 2:48 PM, P T Withington <[email protected]> wrote:
>
>>
>> http://www.theiphoneblog.com/2009/06/01/iphone-30-safari-geolocation-googles-latitude/
>>
>>
>> On 2009-08-25, at 14:37EDT, Henry Minsky wrote:
>>
>>  I just tried the contacts list example on my iPhone, and it ran quite
>>> nicely.  Has anyone been doing
>>> any iPhone Laszlo apps lately?  Does anyone know how to access the
>>> location
>>> API from Javascript?
>>>
>>>
>>>
>>> --
>>> Henry Minsky
>>> Software Architect
>>> [email protected]
>>>
>>
>>
>
>
> --
> Henry Minsky
> Software Architect
> [email protected]
>
>
>


-- 
Henry Minsky
Software Architect
[email protected]

Reply via email to