-
Notifications
You must be signed in to change notification settings - Fork 44
/
index.html
executable file
·839 lines (819 loc) · 29.4 KB
/
index.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
<!doctype html>
<html lang='zh'>
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-M26LL7D');</script>
<!-- End Google Tag Manager -->
<meta charset='utf-8'/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<title>JS中国开发者大会 | ShenJS</title>
<meta http-equiv='Content-Language' content='en'/>
<meta name='keywords' content='Javascript, Node.js, realtime, JSconf, Shenzhen, China, conference'/>
<meta name='description' content='今年夏天中国主要的JavaScript会议,我们一起在深圳'/>
<!-- Favicons -->
<!-- <link rel='shortcut icon' href='/assets/favicons/favicon.ico'>
<link rel='apple-touch-icon' sizes='57x57' href='/assets/favicons/apple-touch-icon-57x57.png'>
<link rel='apple-touch-icon' sizes='114x114' href='/assets/favicons/apple-touch-icon-114x114.png'>
<link rel='apple-touch-icon' sizes='72x72' href='/assets/favicons/apple-touch-icon-72x72.png'>
<link rel='apple-touch-icon' sizes='144x144' href='/assets/favicons/apple-touch-icon-144x144.png'>
<link rel='apple-touch-icon' sizes='60x60' href='/assets/favicons/apple-touch-icon-60x60.png'>
<link rel='apple-touch-icon' sizes='120x120' href='/assets/favicons/apple-touch-icon-120x120.png'>
<link rel='apple-touch-icon' sizes='76x76' href='/assets/favicons/apple-touch-icon-76x76.png'>
<link rel='apple-touch-icon' sizes='152x152' href='/assets/favicons/apple-touch-icon-152x152.png'>
<link rel='icon' type='image/png' href='/assets/favicons/favicon-196x196.png' sizes='196x196'>
<link rel='icon' type='image/png' href='/assets/favicons/favicon-160x160.png' sizes='160x160'>
<link rel='icon' type='image/png' href='/assets/favicons/favicon-96x96.png' sizes='96x96'>
<link rel='icon' type='image/png' href='/assets/favicons/favicon-16x16.png' sizes='16x16'>
<link rel='icon' type='image/png' href='/assets/favicons/favicon-32x32.png' sizes='32x32'>
<meta name='msapplication-TileColor' content='#da532c'>
<meta name='msapplication-TileImage' content='/assets/favicons/mstile-144x144.png'>
<meta name='msapplication-config' content='/assets/favicons/browserconfig.xml'> -->
<!-- CSS -->
<link href='/assets/styles.css?v=20150605' rel='stylesheet' type='text/css'/>
<script type="text/javascript" src="http://api.map.baidu.com/api?key=&v=1.1&services=true"></script>
</head>
<body class='page- front index-launch'>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M26LL7D"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<header id='header-new'>
<header class='hero'>
<div class='wrapper'>
<h1>JS中国开发者大会</h1>
<p>2015年7月11日 - 2015年7月12日</p>
<p>09:15 - 19:00</p>
<p>中国深圳</p>
<a class='button' href='http://shenjs2015.eventdove.com/' target='new'>购票参会</a>
</div>
</header>
<div class='menu'>
<nav class='wrapper'>
<a href='#item1'>关于我们</a>
<a href='#item2'>演讲嘉宾</a>
<a href='#item3'>日程安排</a>
<a href='#item4'>赞助商</a>
<a href='#item5'>会场地址</a>
<a class='button buyticket' href='http://shenjs2015.eventdove.com/' target='new'>购票参会</a>
<div class='right'>
<a href='/en'>EN</a> <nav class='social'>
<a class='weibo' href='http://weibo.com/JSConfChina' target='_blank'><span>Weibo</span></a>
<a class='twitter' href='https://twitter.com/jsconfchina' target='_blank'><span>Twitter</span></a>
<a class='github' href='http://github.com/jsconfcn/ShenJS' target='_blank'><span>GitHub</span></a>
<a class='slack' href='https://shenjs.herokuapp.com/' target='_blank'><span>Slack</span></a>
</nav>
</div>
</nav>
</div>
</header>
<!-- About -->
<section class='section about' id='item1'>
<div class='title'>
<h1>关于深JS</h1>
</div>
<div class='wrapper'>
<p>深JS——2015 JS中国开发者大会是一场专注于JavaScript和Node.js技术,为期两天的国际性技术大会。届时,大会会邀请国内外的优秀讲师为大家分享在JavaScript和Node.js技术方面的经验。继上海,北京和杭州之后,JS中国开发者大会将于2015年7月11-12日在深圳召开。
</p>
</div>
<div class='timeline'>
<div class='wrapper'>
<ul>
<li><a href='http://2012.jsconfchina.com' target='new'><h4>沪JS</h4><em>2012</em></a></li>
<li><a href='http://2013.jsconfchina.com' target='new'><h4>京JS</h4><em>2013</em></a></li>
<li><a href='http://2014.jsconfchina.com' target='new'><h4>杭JS</h4><em>2014</em></a></li>
<li class='active'><a href='http://2015.jsconfchina.com' target='new'><h4>深JS</h4><em>2015</em></a></li>
</ul>
</div>
<div class='line'></div>
</div>
</section>
<!-- Banner -->
<section class='banner first'>
<div class='left'>
<a href='https://jsconfchina.com' target='new'>了解更多关于JS中国开发者大会</a>
</div>
<div class='right'>
<a href='https://github.com/jsconfcn/ShenJS/issues' target='new'>想参与讨论?<strong>在Github上加入我们!</strong>
</a>
</div>
</section>
<!-- Speakers -->
<section class='section speakers' id='item2'>
<div class='title'>
<h1>演讲嘉宾</h1>
</div>
<ul>
<li>
<a href='https://github.com/yyx990803' target='new'>
<img src='/images/speakers/1.jpg' />
<div class='cover'>
<div class='info'>
<h4>尤雨溪</h4>
<p>Meteor</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/JacksonTian' target='new'>
<img src='/images/speakers/2.jpg' />
<div class='cover'>
<div class='info'>
<h4>朴灵</h4>
<p>阿里云</p>
</div>
</a>
</div>
</li>
<li>
<a href='http://weibo.com/threeday0905' target='new'>
<img src='/images/speakers/3.jpg' />
<div class='cover'>
<div class='info'>
<h4>赫门</h4>
<p>阿里巴巴</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/mafintosh' target='new'>
<img src='/images/speakers/4.jpg' />
<div class='cover'>
<div class='info'>
<h4>Mathias Buus</h4>
<p></p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/pissang' target='new'>
<img src='/images/speakers/5.jpg' />
<div class='cover'>
<div class='info'>
<h4>沈毅</h4>
<p>百度</p>
</div>
</a>
</div>
</li>
<li>
<a href='http://geekonaut.de' target='new'>
<img src='/images/speakers/6.jpg' />
<div class='cover'>
<div class='info'>
<h4>Martin Naumann</h4>
<p>Archilogic</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/hax' target='new'>
<img src='/images/speakers/7.jpg' />
<div class='cover'>
<div class='info'>
<h4>Hax</h4>
<p>百姓网</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://twitter.com/TimPietrusky' target='new'>
<img src='/images/speakers/8.jpg' />
<div class='cover'>
<div class='info'>
<h4>Tim Pietrusky</h4>
<p>Synoa GmbH</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/ngot' target='new'>
<img src='/images/speakers/9.jpg' />
<div class='cover'>
<div class='info'>
<h4>庄恒飞</h4>
<p>孢子社区</p>
</div>
</a>
</div>
</li>
<li>
<a href='http://github.com/hulufei' target='new'>
<img src='/images/speakers/10.jpg' />
<div class='cover'>
<div class='info'>
<h4>刘辉</h4>
<p>Coding.net</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/dead-horse' target='new'>
<img src='/images/speakers/11.jpg' />
<div class='cover'>
<div class='info'>
<h4>死马</h4>
<p>阿里巴巴</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://twitter.com/holtbt' target='new'>
<img src='/images/speakers/12.jpg' />
<div class='cover'>
<div class='info'>
<h4>Brian Holt</h4>
<p>Netflix</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/Unitech' target='new'>
<img src='/images/speakers/13.jpg' />
<div class='cover'>
<div class='info'>
<h4>Alexandre Strzelewicz</h4>
<p>Keymetrics</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/zensh' target='new'>
<img src='/images/speakers/14.jpg' />
<div class='cover'>
<div class='info'>
<h4>严清</h4>
<p>Teambition</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/leizongmin' target='new'>
<img src='/images/speakers/15.jpg' />
<div class='cover'>
<div class='info'>
<h4>雷宗民</h4>
<p>一登</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/EyalAr' target='new'>
<img src='/images/speakers/16.jpg' />
<div class='cover'>
<div class='info'>
<h4>Eyal Arubas</h4>
<p>EF</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/niyue' target='new'>
<img src='/images/speakers/17.jpg' />
<div class='cover'>
<div class='info'>
<h4>倪跃</h4>
<p>Splunk</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/ajfisher' target='new'>
<img src='/images/speakers/18.jpg' />
<div class='cover'>
<div class='info'>
<h4>Andrew Fisher</h4>
<p>NodeBots</p>
</div>
</a>
</div>
</li>
<li>
<a href='http://www.zhihu.com/people/wen-tian-le' target='new'>
<img src='/images/speakers/19.jpg' />
<div class='cover'>
<div class='info'>
<h4>文天乐</h4>
<p>Ucloud</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://plus.google.com/u/0/+%E9%A9%AC%E9%80%B8%E6%B8%85' target='new'>
<img src='/images/speakers/20.jpg' />
<div class='cover'>
<div class='info'>
<h4>马逸清</h4>
<p>七牛</p>
</div>
</a>
</div>
</li>
<li>
<a href='https://github.com/loddit' target='new'>
<img src='/images/speakers/21.jpg' />
<div class='cover'>
<div class='info'>
<h4>李博涵</h4>
<p>一熊科技</p>
</div>
</a>
</div>
</li>
</ul>
</section>
<!-- Schedule -->
<section class='section schedule' id='item3'>
<div class='title'>
<h1>日程安排</h1>
</div>
<div class='wrapper'>
<div class='list day1'>
<h2>7/11</h2>
<ul>
<li>
<time>08:15</time>
<div>
<h4>签到</h4>
</div>
</li>
<li>
<time>09:15</time>
<div>
<h4>主持人开场</h4>
<p>Goddy Zhao</p>
</div>
</li>
<li>
<time>09:45</time>
<div>
<h4>Database Everywhere: a Reactive Data Architecture for JavaScript Frontends
</h4>
<p>尤雨溪</p>
</div>
</li>
<li>
<time>10:15</time>
<div>
<h4>Unlimited Power – ES6 Generators</h4>
<p>Brian Holt</p>
</div>
</li>
<li>
<time>10:45</time>
<div>
<h4>抽奖 + 休息</h4>
</div>
</li>
<li>
<time>11:00</time>
<div>
<h4>koa 和 toa 的框架原理及开发实践</h4>
<p>严清 <a href='http://www.zensh.org/slides/2015toakoa/index.html'>Slide</a></p>
</div>
</li>
<li>
<time>11:30</time>
<div>
<h4>用Angular.js做实时应用的一次实践</h4>
<p>李博涵</p>
</div>
</li>
<li>
<time>12:00</time>
<div>
<h4>午餐</h4>
</div>
</li>
<li>
<time>13:30</time>
<div>
<h4>PM2 and Keymetrics.io</h4>
<p>Alexandre Strzelewicz</p>
</div>
</li>
<li>
<time>14:00</time>
<div>
<h4>Nodebot session introduction</h4>
<p>Andrew Fisher</p>
</div>
</li>
<li>
<time>14:30</time>
<div>
<h4>抽奖 + 休息</h4>
</div>
</li>
<li>
<time>14:50</time>
<div>
<h4>Lighting Talk</h4>
</div>
</li>
<li>
<time>15:20</time>
<div>
<h4>如何构建配置集中管理且自动调度的应用集群</h4>
<p>文天乐</p>
</div>
</li>
<li>
<time>15:50</time>
<div>
<h4>The Rise and Fall of JS Frameworks</h4>
<p>Eyal Arubas</p>
</div>
</li>
<li>
<time>16:20</time>
<div>
<h4>休息</h4>
</div>
</li>
<li>
<time>16:30</time>
<div>
<h4>前端技术在数据可视化领域的无限畅想</h4>
<p>沈毅</p>
</div>
</li>
<li>
<time>17:00</time>
<div>
<h4>NERD DISCO: The Next Generation
</h4>
<p>Tim Pietrusky</p>
</div>
</li>
<li>
<time>17:30</time>
<div>
<h4>抽奖</h4>
</div>
</li>
<li>
<time>19:00</time>
<div>
<h4>Afterparty</h4>
</div>
</li>
<li>
<time>19:00</time>
<div>
<h4>Nodebot 教程</h4>
<p>Andrew Fisher</p>
</div>
</li>
</ul>
</div>
<div class='list day2'>
<h2>7/12</h2>
<ul>
<li></li>
<li>
<time>09:15</time>
<div>
<h4>七牛前端测试实践</h4>
<p>马逸清</p>
</div>
</li>
<li>
<time>09:45</time>
<div>
<h4>调优利器:node profiler
</h4>
<p>朴灵 <a href='https://github.com/JacksonTian/shenjs'>Slide</a></p>
</div>
</li>
<li>
<time>10:15</time>
<div>
<h4>抽奖 + 休息</h4>
</div>
</li>
<li>
<time>10:30</time>
<div>
<h4>p2p pipes</h4>
<p>Mathias Buus <a href='https://github.com/mafintosh/slides/tree/gh-pages/jsconf-china-2015'>Slides</a></p>
</div>
</li>
<li>
<time>11:00</time>
<div>
<h4>微服务架构下的服务通讯</h4>
<p>雷宗民</p>
</div>
</li>
<li>
<time>11:30</time>
<div>
<h4>前端服务化之路</h4>
<p>赫门</p>
</div>
</li>
<li>
<time>12:00</time>
<div>
<h4>午餐</h4>
</div>
</li>
<li>
<time>13:30</time>
<div>
<h4>JavaScript: The World's Best Programming Language
</h4>
<p>Hax</p>
</div>
</li>
<li>
<time>14:00</time>
<div>
<h4>fibjs原理以及在孢子社区的实践</h4>
<p>庄恒飞</p>
</div>
</li>
<li>
<time>14:30</time>
<div>
<h4>抽奖 + 休息</h4>
</div>
</li>
<li>
<time>14:50</time>
<div>
<h4>Lighting Talk</h4>
</div>
</li>
<li>
<time>15:20</time>
<div>
<h4>Persistent data structure in JS land: implementing immutable frontend using react.js
</h4>
<p>倪跃</p>
</div>
</li>
<li>
<time>15:50</time>
<div>
<h4>使用 React 构建在线 IDE 的应用实践</h4>
<p>刘辉</p>
</div>
</li>
<li>
<time>16:20</time>
<div>
<h4>休息</h4>
</div>
</li>
<li>
<time>16:30</time>
<div>
<h4>Diving in - WebGL and WebVR</h4>
<p>Martin Naumann</p>
</div>
</li>
<li>
<time>17:00</time>
<div>
<h4>Maintainable Node.js</h4>
<p>死马</p>
</div>
</li>
<li>
<time>17:30</time>
<div>
<h4>抽奖</h4>
</div>
</li>
<li>
<time>19:00</time>
<div>
<h4>Afterparty</h4>
</div>
</li>
<li></li>
</ul>
</div>
</div>
</section>
<!-- Banner -->
<section class='banner second'>
<div class='wrapper'>
<h1>2015JS中国开发者大会</h1>
<a class='button buyticket' href='http://shenjs2015.eventdove.com/' target='new'>购票参会</a>
</div>
</section>
<!-- sponsors-->
<section class='section sponsors' id='item4'>
<div class='title'>
<h1>赞助商</h1>
</div>
<div class='wrapper'>
<h3>赞助方</h3>
<div>
<a href='http://wiredcraft.com/' target='new'><img src='/images/sponsors/wiredcraft.png' width='300' /></a>
<a href='http://www.qiniu.com/' target='new'><img src='/images/sponsors/qiniu.png' width='230' /></a>
<a href='http://careers.ef.com/cn/categories/technology/' target='new'><img src='/images/sponsors/ef.png' width='140' /></a>
<a href='#' target='new'><img src='/images/sponsors/yueya.png' width='230' height='120' /></a>
<br/>
<a href='https://www.splunk.com/' target='new'><img src='/images/sponsors/splunk.png' width='170' /></a>
<a href='http://www.ucloud.cn/' target='new'><img src='/images/sponsors/ucloud.png?' width='170' /></a>
<br/>
<a href='https://www.teambition.com/' target='new' class="c-type"><img src='/images/sponsors/teambition.png' width='160' /></a>
<a href='http://www.upyun.com/' target='new' class="c-type"><img src='/images/sponsors/upyun.png' width='150' /></a>
<a href='https://bearychat.com/' target='new' class="c-type"><img src='/images/sponsors/bearyinnovative.png' height='90' /></a>
<a href='http://www.epam.com/' target='new' class="c-type"><img src='/images/sponsors/epam.png' width='130' /></a>
<a href='https://coding.net/' target='new' class="c-type"><img src='/images/sponsors/coding.png' width='160' /></a>
</div>
<h3>合作媒体</h3>
<div class='mediapartner'>
<a href='http://segmentfault.com/' target='new'><img src='/images/sponsors/sf.png' width='150' /></a>
<a href='https://knewone.com/' target='new'><img src='/images/sponsors/knewone.png' width='150' /></a>
<a href='http://www.ituring.com.cn/' target='new'><img src='/images/sponsors/turing.jpg' width='150' /></a>
<a href='http://www.broadview.com.cn/' target='new'><img src='/images/sponsors/broadview.png' width='150' /></a>
<a href='https://cnodejs.org/' target='new'><img src='/images/sponsors/cnode.png' width='150' /></a>
<a href='http://www.ptpress.com.cn/default.aspx' target='new'><img src='/images/sponsors/ptpress.png' width='150' /></a>
<a href='https://www.oneapm.com/' target='new'><img src='/images/sponsors/oneapm.png' width='75' /></a>
<a href='http://opensource.hk' target='new'><img src='/images/sponsors/oshk.png' width='150' /></a>
</div>
<h3>特别感谢</h3>
<div class='supporter'>
<a href='http://makeblock.cc' target='new'><img src='/images/sponsors/makeblock.jpg' width='130' /></a>
<a href='http://www.jinshuju.net/' target='new'><img src='/images/sponsors/jinshuju.png' width='120' /></a>
<a href='https://www.jetbrains.com/' target='new'><img src='/images/sponsors/jetbrains.png' width='120' /></a>
<a href='http://www.aliyun.com/' target='new'><img src='/images/sponsors/aliyun.png' width='120' /></a>
</div>
</div>
</section>
<!-- Venue -->
<section class='section venue' id='item5'>
<div class='wrapper'>
<div class='left'>
<h1>会场地址</h1>
<h4><a href='http://qh.vanke.com/' target='new'>深圳前海万科企业公馆 (特区馆)</a>
</h4>
<p>广东省深圳市东滨路与临海路交汇处前海深港现代服务业合作区内</p>
<a target='new' href='http://qh.vanke.com/'>http://qh.vanke.com/</a>
</div>
<div class='map'>
<div id="dituContent"></div>
</div>
</div>
</section>
<!-- Banner -->
<section class='banner third'>
<div class='wrapper'>
<h1>订阅最新信息</h1>
<form action='http://wiredcraft.us2.list-manage1.com/subscribe/post?u=18eb8d6c34ad5d4e781541da9&id=ce3898dd2e' method='post' target='_blank'>
<div class='field'>
<input type='email' value='' name='EMAIL' class='required email' placeholder='你的邮箱地址'/>
</div>
<div class='field'>
<input type='submit' value='订阅' name='subscribe' class='button'/>
</div>
</form>
<!-- <a class='button buyticket'>购票参会<span>敬请期待</span></a> -->
</div>
</section>
<!-- Footer -->
<footer id='footer'>
<div class='wrapper'>
<a href='/code-of-conduct' target="_self">Code Of Conduct</a>
<a href='http://jsconfchina.com' target="new">JSConf China</a>
<a href='https://creativecommons.org/licenses/by/3.0/' target="new">CCA 3.0 License</a>
<a href='http://wiredcraft.com' target="new">Built by Wiredcraft</a>
<div class='right'>
<span>扫二维码关注JSConf</span>
<div class='qrcode'><img src='/images/qrcode.jpg' class='img' width='50' /><img src='/images/qrcode.jpg' class='tooltip' /></div>
</div>
</div>
</footer>
<!-- JS -->
<script src='/assets/scripts.js' type='text/javascript'></script>
<script type="text/javascript">
//创建和初始化地图函数:
function initMap(){
createMap();//创建地图
setMapEvent();//设置地图事件
addMapControl();//向地图添加控件
addMarker();//向地图中添加marker
}
//创建地图函数:
function createMap(){
var map = new BMap.Map("dituContent");//在百度地图容器中创建一个地图
var point = new BMap.Point(113.910269,22.523468);//定义一个中心点坐标
map.centerAndZoom(point,17);//设定地图的中心点和坐标并将地图显示在地图容器中
window.map = map;//将map变量存储在全局
}
//地图事件设置函数:
function setMapEvent(){
map.enableDragging();//启用地图拖拽事件,默认启用(可不写)
map.enableScrollWheelZoom();//启用地图滚轮放大缩小
map.enableDoubleClickZoom();//启用鼠标双击放大,默认启用(可不写)
map.enableKeyboard();//启用键盘上下左右键移动地图
}
//地图控件添加函数:
function addMapControl(){
//向地图中添加缩放控件
var ctrl_nav = new BMap.NavigationControl({anchor:BMAP_ANCHOR_TOP_LEFT,type:BMAP_NAVIGATION_CONTROL_SMALL});
map.addControl(ctrl_nav);
//向地图中添加缩略图控件
var ctrl_ove = new BMap.OverviewMapControl({anchor:BMAP_ANCHOR_BOTTOM_RIGHT,isOpen:0});
map.addControl(ctrl_ove);
//向地图中添加比例尺控件
var ctrl_sca = new BMap.ScaleControl({anchor:BMAP_ANCHOR_BOTTOM_LEFT});
map.addControl(ctrl_sca);
}
//标注点数组
var markerArr = [{title:"深圳前海万科企业公馆(特区馆)",content:"Qianhai Vanke Enterprise Dream Park - Special Zone Mansion",point:"113.909415|22.523434",isOpen:0,icon:{w:23,h:25,l:46,t:21,x:9,lb:12}}
];
//创建marker
function addMarker(){
for(var i=0;i<markerArr.length;i++){
var json = markerArr[i];
var p0 = json.point.split("|")[0];
var p1 = json.point.split("|")[1];
var point = new BMap.Point(p0,p1);
var iconImg = createIcon(json.icon);
var marker = new BMap.Marker(point,{icon:iconImg});
var iw = createInfoWindow(i);
var label = new BMap.Label(json.title,{"offset":new BMap.Size(json.icon.lb-json.icon.x+10,-20)});
marker.setLabel(label);
map.addOverlay(marker);
label.setStyle({
borderColor:"#808080",
color:"#333",
cursor:"pointer"
});
(function(){
var index = i;
var _iw = createInfoWindow(i);
var _marker = marker;
_marker.addEventListener("click",function(){
this.openInfoWindow(_iw);
});
_iw.addEventListener("open",function(){
_marker.getLabel().hide();
})
_iw.addEventListener("close",function(){
_marker.getLabel().show();
})
label.addEventListener("click",function(){
_marker.openInfoWindow(_iw);
})
if(!!json.isOpen){
label.hide();
_marker.openInfoWindow(_iw);
}
})()
}
}
//创建InfoWindow
function createInfoWindow(i){
var json = markerArr[i];
var iw = new BMap.InfoWindow("<b class='iw_poi_title' title='" + json.title + "'>" + json.title + "</b><div class='iw_poi_content'>"+json.content+"</div>");
return iw;
}
//创建一个Icon
function createIcon(json){
var icon = new BMap.Icon("http://app.baidu.com/map/images/us_mk_icon.png", new BMap.Size(json.w,json.h),{imageOffset: new BMap.Size(-json.l,-json.t),infoWindowOffset:new BMap.Size(json.lb+5,1),offset:new BMap.Size(json.x,json.h)})
return icon;
}
initMap();//创建和初始化地图
</script>
<!--[if lt IE 9]><script src='http://html5shim.googlecode.com/svn/trunk/html5.js'></script><![endif]-->
<script type='text/javascript'>
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '54ee7d005dd053560400c9bd');
t.src = '//secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>
</body>
</html>