-
Notifications
You must be signed in to change notification settings - Fork 0
/
phonegap.html
1333 lines (1148 loc) · 42.3 KB
/
phonegap.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title> PhoneGap</title>
<link rel="stylesheet" type="text/css" href="/wp-content/themes/phonegap/style.css?version=2.0.2"/>
<link rel="pingback" href="http://www.phonegap.com/xmlrpc.php"/>
<link rel='archives' title='July 2011' href='http://www.phonegap.com/2011/07/'/>
<link rel='archives' title='June 2011' href='http://www.phonegap.com/2011/06/'/>
<link rel='archives' title='May 2011' href='http://www.phonegap.com/2011/05/'/>
<link rel='archives' title='April 2011' href='http://www.phonegap.com/2011/04/'/>
<link rel='archives' title='March 2011' href='http://www.phonegap.com/2011/03/'/>
<link rel='archives' title='February 2011' href='http://www.phonegap.com/2011/02/'/>
<link rel='archives' title='January 2011' href='http://www.phonegap.com/2011/01/'/>
<link rel='archives' title='December 2010' href='http://www.phonegap.com/2010/12/'/>
<link rel='archives' title='November 2010' href='http://www.phonegap.com/2010/11/'/>
<link rel='archives' title='October 2010' href='http://www.phonegap.com/2010/10/'/>
<link rel='archives' title='September 2010' href='http://www.phonegap.com/2010/09/'/>
<link rel='archives' title='August 2010' href='http://www.phonegap.com/2010/08/'/>
<link rel='archives' title='July 2010' href='http://www.phonegap.com/2010/07/'/>
<link rel='archives' title='June 2010' href='http://www.phonegap.com/2010/06/'/>
<link rel='archives' title='May 2010' href='http://www.phonegap.com/2010/05/'/>
<link rel='archives' title='April 2010' href='http://www.phonegap.com/2010/04/'/>
<link rel='archives' title='March 2010' href='http://www.phonegap.com/2010/03/'/>
<link rel='archives' title='February 2010' href='http://www.phonegap.com/2010/02/'/>
<link rel='archives' title='January 2010' href='http://www.phonegap.com/2010/01/'/>
<link rel='archives' title='December 2009' href='http://www.phonegap.com/2009/12/'/>
<link rel='archives' title='November 2009' href='http://www.phonegap.com/2009/11/'/>
<link rel='archives' title='October 2009' href='http://www.phonegap.com/2009/10/'/>
<link rel='archives' title='September 2009' href='http://www.phonegap.com/2009/09/'/>
<link rel='archives' title='August 2009' href='http://www.phonegap.com/2009/08/'/>
<link rel='archives' title='June 2009' href='http://www.phonegap.com/2009/06/'/>
<link rel='archives' title='May 2009' href='http://www.phonegap.com/2009/05/'/>
<link rel='archives' title='April 2009' href='http://www.phonegap.com/2009/04/'/>
<link rel='archives' title='March 2009' href='http://www.phonegap.com/2009/03/'/>
<link rel='archives' title='February 2009' href='http://www.phonegap.com/2009/02/'/>
<link rel='archives' title='January 2009' href='http://www.phonegap.com/2009/01/'/>
<link rel='archives' title='December 2008' href='http://www.phonegap.com/2008/12/'/>
<link rel='archives' title='November 2008' href='http://www.phonegap.com/2008/11/'/>
<link rel='archives' title='September 2008' href='http://www.phonegap.com/2008/09/'/>
<link rel='archives' title='August 2008' href='http://www.phonegap.com/2008/08/'/>
<link rel="alternate" type="application/rss+xml" title="PhoneGap » Feed"
href="http://www.phonegap.com/feed/"/>
<link rel="alternate" type="application/rss+xml" title="PhoneGap » Comments Feed"
href="http://www.phonegap.com/comments/feed/"/>
<link rel='stylesheet' id='contact-form-7-css'
href='http://www.phonegap.com/wp-content/plugins/contact-form-7/styles.css?ver=2.4.2' type='text/css'
media='all'/>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.phonegap.com/xmlrpc.php?rsd"/>
<link rel="wlwmanifest" type="application/wlwmanifest+xml"
href="http://www.phonegap.com/wp-includes/wlwmanifest.xml"/>
<link rel='index' title='PhoneGap' href='http://www.phonegap.com/'/>
<meta name="generator" content="WordPress 3.0.2"/>
<script type="text/javascript">
//<![CDATA[
var _wpcf7 = { cached: 1 };
//]]>
</script>
<script src="/js/jquery-1.6.min.js" type="text/javascript"></script>
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1"/>
<script type="text/javascript">
var _kmq = _kmq || [];
function _kms(u)
{
setTimeout(function()
{
var s = document.createElement('script');
var f = document.getElementsByTagName('script')[0];
s.type = 'text/javascript';
s.async = true;
s.src = u;
f.parentNode.insertBefore(s, f);
}, 1);
}
_kms('//i.kissmetrics.com/i.js');
_kms('//doug1izaerwt3.cloudfront.net/84fcfb304c09dcc5baf5053d7157c9804bec4396.1.js');
</script>
</head>
<body class="home blog">
<div id="wrap">
<div id="header">
<a class="logo" href="http://www.phonegap.com" name="PhoneGap"></a>
<div id="menu">
<form class="mobile-show">
<select onchange="location = this.options[this.selectedIndex].value;">
<option value="/" selected class="selected">Home</option>
<option value="/about">About</option>
<option value="/support">Support</option>
<option value="/contact">Contact</option>
<optgroup label="Developers">
<option value="http://docs.phonegap.com">API Doc</option>
<option value="/start">Getting Started Guide</option>
<option value="http://wiki.phonegap.com">Wiki</option>
<option value="/about/features">Supported Features</option>
</optgroup>
<optgroup label="Community">
<option value="/apps">Apps</option>
<option value="/tools">Tools</option>
<option value="http://groups.google.com/group/phonegap">Google Groups</option>
<option value="http://phonegap.meetup.com">Meetup Groups</option>
<option value="/community#irc">IRC</option>
</optgroup>
</select>
</form>
<div class="mobile-hide">
<a class="menu-item-about" href="/about">About<span class="arrow-down"></span></a>
<a class="menu-item-dev" href="/docs">Developers<span class="arrow-down"></span></a>
<a class="menu-item-community" href="/community">Community<span class="arrow-down"></span></a>
<a class="menu-item-support" href="/support">Support<span class="arrow-down"></span></a>
</div>
<div class="dropdown dropdown-about">
<ul>
<li><a href="/about">Overview</a></li>
<li><a href="/about/features">Supported<br/>Features</a></li>
<li><a href="/about/roadmap">Roadmap</a></li>
<li><a href="/about/license">License</a></li>
<li><a href="/about/story">Story</a></li>
</ul>
</div>
<div class="dropdown dropdown-community">
<ul>
<li><a href="/apps">Apps</a></li>
<!-- <li><a href="/plugins">Plugins</a></li> -->
<li><a href="/community/events">Events</a></li>
<li><a href="http://phonegap.pbwiki.com/">Wiki<span class="ext">ext</span></a></li>
<li><a href="http://groups.google.com/group/phonegap">Google Groups<span class="ext">ext</span></a></li>
<li><a href="http://phonegap.meetup.com">Meetup Groups<span class="ext">ext</span></a></li>
<li><a href="/blog">Blogs</a></li>
<li><a href="/community#irc">IRC</a></li>
</ul>
</div>
<div class="dropdown dropdown-dev">
<ul>
<li><a href="http://docs.phonegap.com/">API Docs</a></li>
<li><a href="/start">Getting Started</a></li>
<li><a href="/tools">Development<br/>Tools</a></li>
<li><a href="http://phonegap.pbwiki.com/">Wiki</a></li>
</ul>
</div>
<div class="dropdown dropdown-support">
<ul>
<li><a href="/support">Overview</a></li>
<li><a href="/support#support-packages">Support<br/>Packages</a></li>
</ul>
</div>
</div>
<a id="download-3743" class="download-button mobile-hide"
onclick="_kmq.push(['record', 'Clicked Download', {'Page':'Get Started'}]);pageTracker._trackEvent('Download', '0.9.6', 'zip');"
href="/download-thankyou"><strong>Download</strong><span>PhoneGap 0.9.6</span></a>
</div>
<script type="text/javascript">
function activateDropDown(target, height)
{
var animate = true;
var prefix = '.dropdown-' + target;
var menu = $(prefix);
var height = 25;
height += $(prefix + ' ul li').length * 28;
height += $(prefix + ' ul li br').length * 15;
$(prefix + ', ' + '.menu-item-' + target).hover(function(r)
{
var item = $(this);
if (item[0].className && item[0].className.indexOf('menu') > -1)
{
var left = item.position().left - 8;
menu.css('left', left + 'px');
menu.animate({height:height + 'px'}, 200);
}
animate = false;
setTimeout(function()
{
animate = true;
}, 1);
menu.css('display', 'block');
}, function(r)
{
setTimeout(function()
{
if (animate) menu.animate({height:'0px'}, 200);
}, 0);
});
}
activateDropDown('dev');
activateDropDown('community');
activateDropDown('about');
activateDropDown('support');
</script>
<div id="leadin">
<h1>Blog</h1>
<div class="mobile-show" style="position:absolute; top:0;left:0;bottom:0;right:0;"></div>
</div>
<div id="content">
<!-- end header -->
<style type="text/css">
.feed-divider
{
position: absolute;
left: 0;
right: 0;
height: 10px;
background: url(/wp-content/themes/phonegap/images/sprite_home.png) repeat-x 0 -760px;
margin-top: 48px
}
.feed-wrap
{
margin: 0 auto;
position: relative
}
.home #content, .page-id-166 #content
{
position: static;
padding-bottom: 60px
}
.feed-list
{
position: absolute;
top: 0;
margin: 0 0 24px 2px;
width: 22%
}
.feed-list.wide
{
position: relative;
width: 46%
}
.feed-list .message, .form-container p, .form-container label
{
font-size: 14px;
line-height: 1.4em
}
.feed-list:first-child
{
margin-top: 0
}
.feed-list h2, .feed-list ul
{
padding: 16px 0
}
.feed-list h2
{
padding-bottom: 0;
margin-bottom: 14px;
text-transform: uppercase;
background: url(/wp-content/themes/phonegap/images/sprite_home.png) no-repeat 0 0px
}
.feed-list h2 a
{
color: #555;
padding-left: 32px
}
.twitter.feed-list h2
{
background-position: 0 -50px
}
.newsletter.feed-list h2
{
background-position: 0 -100px
}
.feed-list ul
{
padding-top: 0px
}
.feed-list ul li
{
height: 100px;
border-bottom: 1px solid #ddd;
margin: 0 -8px;
padding: 24px 8px;
position: relative
}
#bSubmit
{
border-top: 1px solid #ddd;
margin: 0 -8px;
padding: 16px 0px 0
}
.feed-list ul li p
{
font-size: 13px
}
.feed-list ul li h3
{
font-size: 18px;
padding-bottom: 6px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}
.feed-list ul li .group, .feed-list ul li .twitter-timestamp
{
position: absolute;
color: #aaa;
right: 16px;
bottom: 14px;
font-size: 13px;
font-family: "HelveticaNeue-Light", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
font-weight: 300;
}
.feed-list .bt, .form-container input[type="submit"]
{
border: none;
color: #fff;
background-color: #909399;
width: 110px;
margin-left: 10px;
display: block;
text-align: center;
font-weight: bold;
font-size: 14px;
line-height: 32px;
height: 32px;
padding: 0;
border-radius: 5px;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
cursor: pointer;
margin-left: 0
}
.feed-list .bt:hover, .form-container input[type="submit"]:hover
{
opacity: 0.75;
filter: alpha(opacity = 75);
}
.form-container
{
padding-top: 24px;
height: 346px
}
.form-container form
{
position: absolute;
bottom: 24px;
width: 190px
}
.form-container input[type="text"]
{
width: 178px;
margin-bottom: 16px
}
.platforms
{
border: none
}
.form-container a
{
color: #555;
text-decoration: underline
}
#leadin
{
display: none
}
.main-header
{
padding-top: 35px;
height: 240px;
position: relative;
margin-bottom: 35px
}
.main-header h1
{
float: left;
width: 230px;
height: 240px;
background: url(/wp-content/themes/phonegap/images/sprite_home.png) no-repeat 0 -300px;
margin-left: 0
}
.main-header .desc
{
margin-left: 280px;
margin-top: -3px;
margin-right: 40px;
padding: 0;
font-size: 19px;
line-height: 1.5em;;
}
.main-header .diagram
{
width: 540px;
height: 110px;
background: url(/wp-content/themes/phonegap/images/sprite_home.png) no-repeat 0 -150px;
position: absolute;
bottom: 0;
left: 280px
}
.desc a
{
color: #444;
text-decoration: underline;
padding: 0 6px;
margin-left: 4px;
border-radius: 5px;
-khtml-border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}
.desc a:hover
{
color: #fff;
background: #555;
text-decoration: none;
}
.blog-feed ul li a
{
color: #555;
}
.blog-feed ul li a:hover
{
text-decoration: none;
}
.blog-feed a .hover
{
position: absolute;
top: 10px;
left: 0px;
right: 0px;
bottom: 10px;
padding-left: 8px;
line-height: 240px;
font-size: 13px;
opacity: 0;
border-left: 2px #ffb044 solid;
border-right: 2px #ffb044 solid;
filter: alpha(opacity = 0);
}
.blog-feed a:hover .arrow
{
color: #FFB044;
}
.blog-feed ul li
{
padding-right: 36px;
}
.blog-feed .arrow
{
position: absolute;
right: 18px;
top: 50%;
margin-top: -26px;
font-size: 40px;
color: #DDD;
}
.blog-feed a:hover .hover, a.desc:hover .hover
{
opacity: 1;
filter: alpha(opacity = 100);
}
.twitter.feed-list ul li a:hover
{
color: #22c5ff;
}
.blog-feed li p
{
line-height: 1.45em;
}
</style>
<div style="padding-bottom: 50px;margin-left:-8px">
<div class="main-header mobile-hide">
<h1></h1>
<div class="desc" style="position:relative"><strong>PhoneGap</strong> is an HTML5 app platform that allows you
to author native applications with web technologies and get access to APIs and app stores. PhoneGap
leverages web technologies developers already know best... HTML and JavaScript.<a href="/about">Learn
More »</a></div>
<div class="diagram"></div>
</div>
<div class="carousel">
<div class="c-top"></div>
<div class="c-left"></div>
<div class="c-right"></div>
<div id="carousel-ui" class="carousel-ui">
<div class="c-left"></div>
<div class="c-right"></div>
</div>
<div class="c-shadow"></div>
<style type="text/css">
.carousel, .card, .carousel-container
{
position: absolute;
bottom: 0px;
height: 276px;
width: 908px
}
.card, .carousel-container
{
overflow: hidden
}
.carousel
{
position: relative;
top: auto;
left: auto;
right: auto;
padding: 0;
padding-bottom: 43px
}
.carousel-container
{
top: 0;
bottom: auto;
height: 277px;
background: url(/wp-content/themes/phonegap/images/carousel_tile.png) repeat-x 0 17px
}
.carousel-ui
{
position: absolute;
bottom: 0;
height: 42px;
left: 0;
right: 0;
width: auto;
background: url(/wp-content/themes/phonegap/images/sprite_carousel.png) repeat-x 0 -110px
}
.c-top, .c-left, .c-right
{
position: absolute;
background: url(/wp-content/themes/phonegap/images/sprite_carousel.png) repeat-x 0 -150px;
top: 0px
}
.c-top
{
left: 0;
right: 0;
background-position: 0 -320px;
height: 3px
}
.c-left
{
left: -3px;
height: 278px;
background-position: 0 -350px;
width: 12px
}
.c-right
{
right: -3px;
height: 278px;
background-position: 100% -350px;
width: 12px
}
.cr-dot
{
top: 0px;
border-right: 1px solid #767676;
height: 40px;
position: absolute;
color: #444;
cursor: pointer;
text-align: center;
line-height: 41px;
}
.cr-dot:hover
{
}
.cr-dot img
{
position: absolute;
left: 8px;
top: 4px
}
.cr-dot span
{
display: block;
padding-left: 14px;
font-size: 13px
}
.cr-dot.selected
{
color: #fff;
background: url(/wp-content/themes/phonegap/images/sprite_carousel.png) repeat-x 0 -260px
}
.cr-dot.last
{
border: none
}
.carousel-ui .c-left, .carousel-ui .c-right
{
height: 42px;
background: url(/wp-content/themes/phonegap/images/sprite_carousel.png) repeat-x 0 -160px;
z-index: 4
}
.carousel-ui .c-right
{
height: 42px;
background-position: 100% -210px
}
.c-shadow
{
position: absolute;
background: url(/wp-content/themes/phonegap/images/sprite_carousel.png) repeat-x 0 0px;
bottom: 42px;
left: 0;
right: 0;
height: 10px;
z-index: 3
}
#carousel .left-div
{
position: absolute;
left: 704px;
top: 50px;
width: 224px;
left: auto;
right: 30px
}
#carousel img
{
position: absolute;
bottom: 0;
left: -4px
}
#carousel h3
{
margin-bottom: 14px;
margin-left: 4px
}
#carousel p
{
margin-left: 4px;
font-size: 15px
}
#carousel .cta
{
margin-top: 16px;
width: 200px;
padding: 0;
height: 43px;
background: url(/wp-content/themes/phonegap/images/sprite_home.png) no-repeat 0 -600px;
text-shadow: #8A8C90 0 -1px 1px
}
#carousel .cta:hover
{
background-position: -200px -600px;
color: #fff;
}
</style>
<div id="carousel" class="carousel-container">
<div id="current-card" class="card">
<img src="/assets/carousel/dw5_3.jpg" alt=""/>
<div class="left-div"><h3>Dreamweaver CS5.5</h3>
<p>Native mobile apps for iOS and Android with PhoneGap and Dreamweaver CS5.5</p><a
class="cta green"
href="http://blogs.nitobi.com/andre/index.php/2011/04/12/adobe-dreamweaver-5-5-supports-phonegap/">Learn
More</a></div>
</div>
</div>
<script src="/js/Carousel.js?v1.3" type="text/javascript"></script>
<script type="text/javascript">
var opts = {timePerSlide:8, transitionDuration:1.5};
var sDW = {title:'PhoneGap + DW',
img:'/assets/carousel/dw5_3.jpg',
thumb:'/assets/carousel/dw_icon.png',
body:'<h3 >Dreamweaver CS5.5</h3><p >Native mobile apps for iOS and Android with PhoneGap and DreamWeaver CS 5.5</p>',
link:'http://blogs.nitobi.com/andre/index.php/2011/04/12/adobe-dreamweaver-5-5-supports-phonegap'};
var sPGDay = {title:'PhoneGap Day',
img:'/assets/carousel/biolab.png',
thumb:'/assets/carousel/biolab_icon.png',
body:'<h3 >PhoneGap Day!</h3><p >Celebrate everything PhoneGap at the first-ever PhoneGap Day on Friday, July 29th in Portland!</p>',
link:'/community/events/phonegap-day/'};
var sPGB = {title:'PhoneGap Build',
img:'/assets/carousel/build2.png',
thumb:'/assets/carousel/build_icon.png',
body:'<h3>PhoneGap Build</h3><p>Write Once</br>Compile in the Cloud<br/>Run Anywhere</p>',
link:'http://build.phonegap.com'};
var sWS = {title:'Web Standards',
img:'/assets/carousel/web_technologies.png',
thumb:'/assets/carousel/ws_icon.png',
body:'<h3 >Standards-based<br/>Web Technologies</h3><p >Leverage web technologies that developers already know...<br/>HTML, CSS and JavaScript</p>',
link:'/about'};
var sCS = {title:'Case Studies',
img:'/assets/carousel/arzf.jpg',
thumb:'/assets/carousel/cs_icon.png',
body:'<h3 >Harmonious/Elementals<br/>Case Study</h3><p >Inside the Developer's Studio: Simon Madine on Harmonious, Elementals and PhoneGap</p>',
link:'/case_study/simon-madine-on-harmonious-elementals-and-phonegap'};
var slides = [sDW, sPGDay, sPGB, sWS, sCS];
var car = new Carousel(document.getElementById('carousel'), document.getElementById('carousel-ui'),
slides, opts);
</script>
</div>
</div>
<div class="feed-group mobile-hide">
<div class="feed-divider"></div>
<div class="feed-wrap">
<div class="feed-list wide blog-feed">
<h2><a href="/blog">Blogs</a></h2>
<ul>
<li>
<a href="http://www.phonegap.com/2011/07/22/phono-mobile-is-powered-by-phonegap/">
<h3>Phono Mobile is Powered by PhoneGap!</h3>
<p>Kudos to Voxeo Labs for today’s launch of Phono Mobile. Phono Mobile integrates
seamlessly with PhoneGap to add voice over Internet (VoIP) calling, IM and real-time
messaging to any HTML5 application. “Phono [...]</p>
<div class="group">Capulet | Fri, Jul 22, 2011</div>
<div class="arrow">›</div>
<div class="hover"></div>
</a>
</li>
<li>
<a href="http://www.phonegap.com/2011/07/20/phonegap-ios-plugin-for-drupal-v0-1/">
<h3>PhoneGap iOS plugin for Drupal v0.1</h3>
<p>Hey Everyone, Jeff Linwood has started work on a PhoneGap iOS plugin for accessing the Drupal
Services API. He has already done some amazing work on it and is looking for feedback.
[...]</p>
<div class="group">Steve | Wed, Jul 20, 2011</div>
<div class="arrow">›</div>
<div class="hover"></div>
</a>
</li>
</ul>
<a class="bt" href="/blog" style="background-color: #ffb044">Go to Blogs</a>
</div>
<div class="twitter feed-list" style="left:50%">
<li id="twitter-1" class="widget widget_twitter"><h2 class="widgettitle"><a
href="http://twitter.com/phonegap" class="twitter_title_link">Twitter</a></h2>
<ul class="twitter">
<li class="twitter-item"><span class="message"><span class="retweet">RT</span> <a
href="http://twitter.com/davejohnson" class="twitter-user">@davejohnson</a>: I've started a PhoneGap security doc here: <a
href="http://bit.ly/obVcqH" class="twitter-link">http://bit.ly/obVcqH</a> It's actually more of a cross platform security feature ...</span>
<span class="twitter-timestamp"><abbr title="2011/07/25 19:10:30">2011/07/25</abbr></span></li>
<li class="twitter-item"><span class="message"><span class="retweet">RT</span> <a
href="http://twitter.com/juanpablob" class="twitter-user">@juanpablob</a>: sencha + phonegap = <3</span>
<span class="twitter-timestamp"><abbr title="2011/07/25 04:28:09">2011/07/25</abbr></span></li>
</ul>
</li>
<a class="bt" href="http://twitter.com/#!/phonegap" style="background-color: #22c5ff" target="_blank">@PhoneGap</a>
</div>
<div class="newsletter feed-list" style="left:76%">
<h2><a href="/newsletter">Newsletter</a></h2>
<div class="form-container">
<p>Sign up for our monthly newsletter. We don't give your email address to anyone else--we hate spam
too.</p>
<form action="http://nitobi.createsend.com/t/y/s/htjuyh/" method="post" id="subForm" class="platforms">
<p for="name">Name:</p>
<input type="text" name="cm-name" id="name" size="25"/><br/>
<p>Email Address:</p>
<input type="text" name="cm-htjuyh-htjuyh" id="htjuyh-htjuyh" size="25"/><br/>
<p>Company:</p>
<input type="text" name="cm-f-trukjr" id="Company" size="25"/><br/>
<br/>
<div id="bSubmit">
<input style="margin-left: 8px; background-color: #00b97e" class="button" type="submit"
value="Subscribe"/>
</div>
</form>
</div>
</div>
</div>
</div>
<style type="text/css">
@media only screen and (max-device-width:600px)
{
.mobile-show h1
{
font-size: 25px;
line-height: 1.2em;
margin-bottom: 16px;
margin-top: -24px
}
.home #content, .page-id-166 #content, #content, .content
{
padding: 12px 20px;
}
.list-button
{
margin-bottom: 24px;
}
.list-button li
{
position: relative;
}
.list-button li a, .list-tab
{
display: block;
height: 36px;
background: #ccc;
background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#b3b3b3));
border: 1px solid #666;
color: #222;
padding: 14px 16px;
padding-right: 22px;
font-size: 17px;
text-shadow: #fff 0 1px 1px;
-webkit-box-shadow: #666 0 0 6px;
border-radius: 10px;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
margin-top: 20px;
}
.list-button li a:hover
{
text-decoration: none;
}
.list-tab
{
padding: 0;
height: auto;
height: 64px;
position: relative;
margin-bottom: 24px;
}
.list-tab li a
{
display: block;
height: 36px;
padding: 14px 0px;
border-left: #eee 1px solid;
border-right: #666 1px solid;
position: absolute;
left: 33%;
right: 33%;
}
.list-tab li:first-child a
{
border-left: 0;
border-right: #666 1px solid;
left: 0;
right: 67%;
margin-right: 1px;
}
.list-tab li:last-child a
{
border-left: #eee 1px solid;
border-right: none;
left: 67%;
right: 0;
margin-left: 1px;
}
.list-button li a[data-icon]
{
padding-left: 83px;
}
.list-button li:first-child a
{
margin-top: none;
}
.list-button li:last-child a
{
}
.list-button li a[data-icon]:after
{
content: "›";
width: 22px;
height: 22px;
border-radius: 10px;
-khtml-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
position: absolute;
right: 10px;
top: 20px;
background: #eee;
background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#b3b3b3));
font-size: 30px;
line-height: 17px;
text-align: center;
}
.list-button li a[data-icon]:before
{
content: '';