-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab-css-b.html
772 lines (708 loc) · 41.2 KB
/
lab-css-b.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="robots" content="noindex">
<meta name="googlebot" content="noindex">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" >
<meta http-equiv="Pragma" content="no-cache" >
<meta http-equiv="Expires" content="0" >
<title>Lab CSS B - HTML Responsive Web Design (Make like Nike)</title>
<link rel="alternate icon" class="js-site-favicon" type="image/png" href="https://github.githubassets.com/favicons/favicon.png">
<link rel="icon" class="js-site-favicon" type="image/svg+xml" href="https://github.githubassets.com/favicons/favicon.svg">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://www.nike.com/assets/ncss/glyphs/2.5/css/glyphs.min.css">
<link rel="stylesheet" href="https://www.nike.com/assets/ncss/3.2/dotcom/desktop/css/ncss.th-th.min.css">
<link rel="stylesheet" href="https://www.nike.com/assets/dotcom/nav/4.44.2/dotcom-nav-client.css">
<link rel="stylesheet" href="https://www.nike.com/assets/dotcom/nav/4.45.0/dotcom-nav-client.css">
<link rel="stylesheet" href="lab-css-b.css">
<script>
$("*[src^='lab-css-b.js']").attr('src' ,'lab-css-b.js?s=' + new Date().getTime());
$("*[href^='lab-css-b.css']").attr('href' ,'lab-css-b.css?s=' + new Date().getTime());
</script>
<style>
#header-sticky, #content-sticky {
position: -webkit-sticky;
position: sticky;
top: 0;
height: 1px;
}
div.content-relative {
position: relative;
position: sticky;
top: 0px;
z-index: 99;
}
@media only screen and (min-width: 1024px){
div.content-sticky {
height: 60px;
}
div.content-sticky + div{margin-top: -44px;}
.hideChild > * {opacity: 0;}
div.content-sticky div.sticky-outer-wrapper div._1gSEALx7,
.sticky-outer-wrapper.active ._1gSEALx7 {
padding-top: 6px;
padding-bottom: 14px;
}
div.content-sticky div.sticky-outer-wrapper h1._1ZsY6zh2,
.sticky-outer-wrapper.active ._1ZsY6zh2 {
font-size: 16px;
}
}
a:focus, a:hover {text-decoration: none;}
</style>
<!-- /href="#"/ -->
</head>
<body style="overflow-y: scroll;">
<script src="lab-css-b.js"></script>
<div id="gen-nav-commerce-header-v2">
<div class="pre-l-header-container _1BHsIGzZ" style="position: relative;">
<div class="pre-l-brand-header d-sm-h d-lg-b z3" data-pre="BrandHeader">
<div class="pre-l-wrapper mauto-sm d-sm-flx flx-dir-sm-r flx-jc-sm-sb flx-wr-sm-nw">
<ul class="pre-brand-menu d-sm-h d-md-flx">
<li class="pre-brand-item">
<a aria-label="Jordan" data-type="click_navBrandBar" data-path="Jordan" class="pre-brand-item d-sm-ib prl3-sm" href="#" data-pre="ILink">
<img src="https://cdn.iconscout.com/icon/free/png-64/jordan-54-555338.png" height="22px" width="22px" alt="Jordan Icon">
</a>
</li>
</ul>
<div class="pre-desktop-usermenu d-sm-h d-md-flx flx-dir-md-r" data-pre="DesktopUserMenu">
<!-- <div class="flx-dir-r flx-ai-md-c d-lg-flx" data-var="helpDropdown">
<div class="pre-help-dropdown pre-l-logo" data-pre="DesktopHelpDropdown">
<div id="HelpMenuDropdown" class="pre-dropdown-menu" data-pre="DropdownMenu">
<a role="listbox" aria-expanded="false" aria-controls="HelpMenuDropdown-Menu" data-var="ctrl" aria-label="ความช่วยเหลือ" data-type="click_navHelpMenuV2" data-path="help" class="pre-help-button body-4 u-bold" href="#" data-pre="ILink">
<span id="hf_header_label_help">Help</span>
</a>
</div>
</div>
<span class="pre-help-separator ml1-sm mr1-sm body-4">|</span>
</div> -->
<div class="d-lg-flx" data-var="desktopLoginButtons">
<div class="pre-login-btns d-lg-flx flx-ai-lg-c" data-pre="DesktopLoginButtons">
<a data-type="click_navMembership" data-path="help" class="body-4 d-lg-flx flx-ai-lg-c u-bold ml2-sm mr2-sm" href="#" data-pre="ILink">
<span>ความช่วยเหลือ</span>
</a>
<span class="ml1-sm mr1-sm body-3">|</span>
<a data-type="click_navMembership" data-path="join us" class="body-4 d-lg-flx flx-ai-lg-c u-bold ml2-sm mr2-sm" href="#" data-pre="ILink">
<span>เข้าร่วมกับเรา</span>
</a>
<span class="ml1-sm mr1-sm body-3">|</span>
<button data-var="loginBtn" data-type="click_navMembership" data-path="sign in" class="nav-btn p0-sm body-4 u-bold ml2-sm mr2-sm" data-pre="ILink">
<span id="hf_title_signin_membership">ลงชื่อเข้าใช้</span>
</button>
</div>
</div>
</div>
</div>
</div>
<div id="header-sticky"></div>
<header class="pre-l-header top-stack-context" data-pre="Header">
<!-- pre-l-header top-stack-context is-hidden is-fixed -->
<div>
<div class="pre-l-wrapper mauto-sm d-sm-flx">
<div class="pre-l-logo prl0-sm top-stack-context" data-var="swooshLogo">
<a aria-label="Nike" data-brand="nike" data-type="click_headerLogo" data-path="home" class="d-sm-b prl2-sm prl3-lg" href="#" data-pre="ILink">
<span class="d-sm-h">Nike</span>
<img src="https://cdn.iconscout.com/icon/free/png-64/nike-16-896223.png" height="60px" width="60px" alt="Homepage Nike">
<!-- <svg class="pre-logo-svg" height="60px" width="60px" fill="#111" viewBox="0 0 69 32">
<path d="M68.56 4L18.4 25.36Q12.16 28 7.92 28q-4.8 0-6.96-3.36-1.36-2.16-.8-5.48t2.96-7.08q2-3.04 6.56-8-1.6 2.56-2.24 5.28-1.2 5.12 2.16 7.52Q11.2 18 14 18q2.24 0 5.04-.72z">
</path>
</svg> -->
</a>
</div>
<div class="pre-l-nav-box flx-gro-sm-1">
<nav class="pre-l-nav">
<div class="pre-l-desktop-menu d-sm-h d-lg-b ta-sm-l ta-lg-c">
<ul class="pre-desktop-menu" data-pre="DesktopMenu">
<li class="pre-desktop-menu-item d-lg-ib is-static is-header">
<a aria-label="ผู้ชาย" data-nav="0,0,-1" role="menu" aria-expanded="false" aria-controls="DesktopMenu-0-0-0" data-type="click_navShoppingMenu" data-path="men" class="pre-desktop-menu-link headline-5 prl3-lg pt4-sm d-sm-b no-outline" href="#" data-pre="ILink">ผู้ชาย</a>
</li>
<li class="pre-desktop-menu-item d-lg-ib is-header">
<a aria-label="SNKRS" data-nav="5,0,-1" data-type="click_navShoppingMenu" data-path="launch" class="pre-desktop-menu-link headline-5 prl3-lg pt4-sm d-sm-b no-outline" href="#" data-pre="ILink">SNKRS</a>
</li>
</ul>
</div>
</nav>
<div class="pre-l-search" data-pre="VisualSearch">
<div class="pre-l-search-box">
<div class="d-sm-flx flx-jc-lg-fe u-position-rel">
<div class="pre-search-contain">
<div class="pre-search-input-box d-sm-b flx-dir-lg-c flx-ai-lg-fe d-lg-flx flx-gro-sm-1 flx-gro-lg-0" type="search">
<input type="text" id="VisualSearchInput" class="pre-search-input headline-5" name="search" autocomplete="off" data-var="vsInput" tabindex="0" placeholder="ค้นหา" aria-label="search item" role="combobox" aria-controls="VisualSearchSuggestionsList" aria-owns="VisualSearchSuggestionsList" aria-expanded="false">
<button class="pre-clear-search ncss-btn pr0-sm z2 d-sm-h" data-var="vsClearSearch" aria-label="reset search">
<svg class="search-clear-icon" fill="#111" height="30px" width="30px" viewBox="0 0 24 24">
<path d="M22 20H7.3c-.3 0-.6-.1-.8-.4l-5.3-7c-.3-.4-.3-.9 0-1.2l5.3-7c.2-.3.5-.4.8-.4H22c.6 0 1 .4 1 1v14c0 .6-.4 1-1 1zM7.8 18H21V6H7.8l-4.6 6 4.6 6zm8.2-3c-.3 0-.5-.1-.7-.3L14 13.4l-1.3 1.3c-.4.4-1 .4-1.4 0s-.4-1 0-1.4l1.3-1.3-1.3-1.3c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l1.3 1.3 1.3-1.3c.4-.4 1-.4 1.4 0s.4 1 0 1.4L15.4 12l1.3 1.3c.4.4.4 1 0 1.4-.2.2-.5.3-.7.3z">
</path>
</svg>
</button>
<button class="pre-search-btn ripple" data-var="vsButton" aria-label="ค้นหา">
<svg class="pre-search-input-icon" fill="#111" height="30px" width="30px" viewBox="0 0 24 24">
<path d="M21.71 20.29L18 16.61A9 9 0 1 0 16.61 18l3.68 3.68a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.39zM11 18a7 7 0 1 1 7-7 7 7 0 0 1-7 7z">
</path>
</svg>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="pre-acct-btn-group pt2-sm pt3-lg d-sm-ib ta-sm-r flx-gro-sm-1 flx-gro-lg-0" data-pre="HeaderButtonGroup">
<a aria-label="favorites" title="favorites" data-var="favoritesLink" data-type="click_navShortcut" data-path="favorites" class="pre-btn-header ripple mr3-sm d-sm-h d-lg-ib" href="#" data-pre="ILink">
<svg width="24px" height="24px" fill="#111" viewBox="0 0 24 24">
<path d="M21.11 4a6.6 6.6 0 0 0-4.79-1.92A6.27 6.27 0 0 0 12 3.84 6.57 6.57 0 0 0 2.89 4c-2.8 2.68-2.45 7.3.88 10.76l6.84 6.63A2 2 0 0 0 12 22a2 2 0 0 0 1.37-.54l.2-.19.61-.57c.6-.57 1.42-1.37 2.49-2.41l2.44-2.39 1.09-1.07c3.38-3.55 3.8-8.1.91-10.83zm-2.35 9.4l-.25.24-.8.79-2.44 2.39c-1 1-1.84 1.79-2.44 2.36L12 20l-6.83-6.68c-2.56-2.66-2.86-6-.88-7.92a4.52 4.52 0 0 1 6.4 0l.09.08a2.12 2.12 0 0 1 .32.3l.9.94.9-.94.28-.27.11-.09a4.52 4.52 0 0 1 6.43 0c1.97 1.9 1.67 5.25-.96 7.98z">
</path>
</svg>
</a>
<div id="nav-cart" class="pre-acct-cart mr2-sm mr0-lg d-sm-ib" data-pre="Cart">
<a data-var="anchor" title="รายการในตะกร้า: 0" aria-label="รายการในตะกร้า: 0" rel="nofollow" data-type="click_navShortcut" data-path="cart" class="icon-btn ripple d-sm-b" href="#" data-pre="ILink">
<div class="">
<svg width="24px" height="24px" fill="#111" viewBox="0 0 24 24">
<path d="M16 7a1 1 0 0 1-1-1V3H9v3a1 1 0 0 1-2 0V3a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1z">
</path>
<path d="M20 5H4a2 2 0 0 0-2 2v13a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a2 2 0 0 0-2-2zm0 15a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V7h16z">
</path>
</svg>
<!--<span class="pre-jewel pre-cart-jewel text-color-primary-dark" style="visibility:hidden" data-var="jewel">0</span>-->
</div>
</a>
</div>
<button data-var="mobileButton" id="MobileMenuButton" aria-haspopup="true" aria-expanded="false" aria-label="Menu" class="pre-btn-mobile-menu pre-btn-icon ripple d-sm-ib d-lg-h">
<svg width="24px" height="24px" fill="#111" viewBox="0 0 24 24">
<path d="M21 13H3c-.6 0-1-.4-1-1s.4-1 1-1h18c.6 0 1 .4 1 1s-.4 1-1 1zm0-8H3c-.6 0-1-.4-1-1s.4-1 1-1h18c.6 0 1 .4 1 1s-.4 1-1 1zm0 16H3c-.6 0-1-.4-1-1s.4-1 1-1h18c.6 0 1 .4 1 1s-.4 1-1 1z">
</path>
</svg>
</button>
</div>
</div>
<div id="HeaderInsertionPointBottom"></div>
</div>
</header>
</div>
</div><!-- gen-nav-commerce-header-v2 -->
<div id="ciclp-app" class="u-full-width u-full-height" style="margin-bottom: 56px">
<div>
<div class="bannerWrap"><!-- bannerWrap -->
<div class="SKI5MWQX _1vSV2T5_">
<div class="swiper-container swiper-container-initialized swiper-container-horizontal swiper-container-ios">
<div class="swiper-wrapper">
<div class="swiper-slide swiper-slide-active" style="width: 100vw;">
<!-- width: 1583px; -->
<div class="_2CVsKbIX" aria-hidden="false">
<span class="_2vXfoh-O"></span>
<div class="_8gPPHhHw">
<p>COVID-19: ข้อมูลเกี่ยวกับร้าน Nike และการจัดส่ง สามารถดูได้<a href="#" class="_2trpWJ_I" data-analytics-action-id="" href="#">ที่นี่</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- bannerWrap -->
<!-- local_menu -->
<div id="content-sticky"></div>
<div data-qa="grid" data-container-type="local_menu" data-fluid-grid="false" class="grid Z25uR9U5 fixed-fluid _3cz-03q- _2IK2ad9n css-1gfb4pw css-1vtn5w7 content-relative">
<div data-qa="grid-row" class="ncss-row grid-row">
<div data-qa="grid-col" class="grid-col va-sm-t ncss-col-lg-12 ncss-col-md-12 ncss-col-sm-12 ncss-col-lg-offset-0 ncss-col-md-offset-0 ncss-col-sm-offset-0">
<div>
<div class="sticky-outer-wrapper"><!-- sticky-outer-wrapper active -->
<!-- height: 104px; / height: 60px; -->
<div class="sticky-inner-wrapper" style="position:relative;top:0px;z-index:90">
<!-- position: fixed; top: 0px; z-index: 90; width: 1583px; -->
<div class="ncss-container fixed-fluid _1gSEALx7">
<h1 class="_1ZsY6zh2">ผู้ชาย</h1>
<div class="_1uZt26F-" style="overflow:hidden;">
<ul class="_AKr_3ox">
<li>
<a href="#" class="JSftBPEZ">รองเท้า</a>
</li>
<li>
<a href="#" class="JSftBPEZ">เสื้อผ้า</a>
</li>
<li>
<a href="#" class="JSftBPEZ">อุปกรณ์</a>
</li>
</ul>
</div>
<div class="_1ZsY6zh2" hidden="">ผู้ชาย</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- local_menu -->
<!-- one image -->
<div class="grid fixed-fluid ncss-container">
<div class="ncss-row grid-row row">
<div class="col-sm-12 col-md-12 col-lg-12">
<div>
<figure class="figure">
<div class="one-img-section"><!-- _1J1k7Sv3 -->
<div style="width:100%;height:100%">
<!--
https://static.nike.com/a/images/f_auto/dpr_1.0/h_700,c_limit/49d45f05-1638-433d-bbb8-1f95239b9427/mens-shoes-clothing-accessories.jpg
<img srcset="elva-fairy-480w.jpg 480w,elva-fairy-800w.jpg 800w"sizes="(max-width: 600px) 480px,800px" src="elva-fairy-800w.jpg" alt="Elva dressed as a fairy">
<img src="https://static.nike.com/a/images/f_auto/dpr_1.0/w_1471,c_limit/922cbcf2-4ed7-4430-91a8-c699931460ff/-.jpg" class="figure-img img-fluid rounded" alt="A figure.">
-->
<picture>
<source media="(min-width: 640px)" srcset="https://static.nike.com/a/images/f_auto/dpr_1.0/w_1471,c_limit/922cbcf2-4ed7-4430-91a8-c699931460ff/-.jpg">
<img src="https://static.nike.com/a/images/f_auto/dpr_1.0/h_700,c_limit/49d45f05-1638-433d-bbb8-1f95239b9427/mens-shoes-clothing-accessories.jpg">
</picture>
</div>
</div>
<figcaption class="one-img-figure figure-caption">
<p data-qa="title" class="figure-caption-title ">
<span>THE NEW REACT</span>
<span>INFINITY RUN 2</span>
</p>
<p class="figure-caption-body-2">Designed to help reduce injuries and keep you on the run.</p>
<div class="hasText">
<a href="#" target="_self" class="caption-link-shop ncss-btn-primary-dark" tabindex="0" aria-label="Shop">Shop</a>
</div>
</figcaption>
<a href="#" target="_self" aria-label="Visit"></a>
</figure>
</div>
</div>
</div>
</div><!-- one image -->
<!-- two image -->
<div class="grid fixed-fluid ncss-container" style="position:relative;margin-top: 60px;">
<div class="ncss-row grid-row" style="margin-bottom: -10px;">
<div class="grid-col va-sm-t ncss-col-lg-12 ncss-col-md-12 ncss-col-sm-12 ncss-col-lg-offset-0 ncss-col-md-offset-0 ncss-col-sm-offset-0">
<div>
<div class="_355YWnGn mb6-sm">
<h2 class="_2PzKMD0A headline-3 text-color-primary-dark card">Trending Now</h2>
</div>
</div>
</div>
</div>
<div class="ncss-row grid-row row">
<div class="col-sm-12 col-md-6 col-lg-6" style="margin-top: 10px; margin-bottom: 10px;">
<div>
<figure class="figure">
<div class="one-img-section">
<div style="width:100%;height:100%">
<img alt="Nike" class="" src="https://static.nike.com/a/images/f_auto/dpr_1.0/h_500,c_limit/682f3f2e-94c0-4ff1-90bd-f00b25988580/mens-shoes-clothing-accessories.jpg">
</div>
</div>
<figcaption class="one-img-figure figure-caption two-img">
<p data-qa="title" class="figure-caption-title"></p>
<p class="figure-caption-body-2 headline-4"><span>HIIT Harder in</span> <span>the SuperRep 2</span></p>
<div class="hasText">
<a href="#" target="_self" class="caption-link-shop ncss-btn-primary-light" tabindex="0" aria-label="Shop">Shop</a>
</div>
</figcaption>
<a href="#" target="_self" aria-label="Visit Nike"></a>
</figure>
</div>
</div><div class="col-sm-12 col-md-6 col-lg-6" style="margin-top: 10px; margin-bottom: 10px;">
<div>
<figure class="figure">
<div class="one-img-section">
<div style="width:100%;height:100%">
<img alt="Nike" class="" src="https://static.nike.com/a/images/f_auto/dpr_1.0/w_511,c_limit/f7f1a551-a58e-4ad7-a821-506d86091c9a/mens-shoes-clothing-accessories.jpg">
</div>
</div>
<figcaption class="one-img-figure figure-caption two-img">
<p data-qa="title" class="figure-caption-title"></p>
<p class="figure-caption-body-2 headline-4" style="color: black;"><span>New Arrivals</span> <span>for the New Year</span></p>
<div class="hasText">
<a href="#" target="_self" class="caption-link-shop ncss-btn-primary-dark" tabindex="0" aria-label="Shop">Shop</a>
</div>
</figcaption>
<a href="#" target="_self" aria-label="Visit Nike"></a>
</figure>
</div>
</div>
</div>
</div><!-- two image -->
<!-- Slider image -->
<div class="grid fixed-fluid ncss-container" style="position:relative;margin-top: 60px;">
<div class="ncss-row grid-row">
<div class="grid-col va-sm-t ncss-col-lg-12 ncss-col-md-12 ncss-col-sm-12 ncss-col-lg-offset-0 ncss-col-md-offset-0 ncss-col-sm-offset-0">
<div><!-- product-container -->
<div class="_355YWnGn mb6-sm section-product">
<h2 class="_2PzKMD0A headline-3 text-color-primary-dark card">The Latest & Greatest</h2>
<a href="#" target="_self" class="link-shop-all" aria-label="Visit Nike">Shop All</a>
</div>
</div>
</div>
</div>
<div class="ncss-row grid-row"><!-- https://codepen.io/joshhunt/pen/LVQZRa -->
<figure data-qa="carousel-card" class="carousel-card">
<div class="ncss-row grid-row row">
<div class="row__inner swiper-container swiper-container-horizontal" id="move-horizontal">
<div class="swiper-wrapper" id="id-swiper-wrapper"><!-- style="transition-duration: 100ms; transform: translate3d(56px, 0px, 0px);" -->
<div class="tile wiper-slide">
<div class="tile__media">
<img class="tile__img" src="https://static.nike.com/a/images/f_auto/q_auto:eco/t_PDP_864_v1/b5748ae1-9155-4460-ae8e-2c8d68a57ab2/0.jpg" alt="" />
</div>
<div class="tile__details">
<div class="tile__title">
Top Gear
</div>
</div>
</div>
<div class="tile wiper-slide">
<div class="tile__media">
<img class="tile__img" src="https://static.nike.com/a/images/f_auto/q_auto:eco/t_PDP_864_v1/e700d18c-bbf3-4c99-b375-bf6237a627b6/0.jpg" alt="" />
</div>
</div>
<div class="tile wiper-slide">
<div class="tile__media">
<img class="tile__img" src="https://static.nike.com/a/images/f_auto/q_auto:eco/t_PDP_864_v1/32df1bae-2e17-4d5d-a5ba-8789c5e43162/0.jpg" alt="" />
</div>
</div>
<div class="tile wiper-slide">
<div class="tile__media">
<img class="tile__img" src="https://static.nike.com/a/images/f_auto/q_auto:eco/t_PDP_864_v1/45d81ab8-c3da-47c5-93b2-66eab4473f8b/0.jpg" alt="" />
</div>
</div>
<div class="tile wiper-slide">
<div class="tile__media">
<img class="tile__img" src="https://static.nike.com/a/images/f_auto/q_auto:eco/t_PDP_864_v1/1e1e99e2-85fc-4177-99a0-0875e57f08cf/0.jpg" alt="" />
</div>
</div>
<div class="tile wiper-slide">
<div class="tile__media">
<img class="tile__img" src="https://static.nike.com/a/images/f_auto/q_auto:eco/t_PDP_864_v1/3fa8f60f-b604-4126-9096-1fb76496e348/0.jpg" alt="" />
</div>
</div>
</div>
<div class="swiper-button-prev swiper-button-disabled" tabindex="0" role="button" aria-label="Previous slide" aria-disabled="true">
<span class="_3lG9nsip"></span>
<span class="buttonIcon" style="top: 240px"></span>
</div>
<div class="swiper-button-next swiper-button-disabled" tabindex="0" role="button" aria-label="Next slide" aria-disabled="true">
<span class="_3lG9nsip"></span>
<span class="buttonIcon" style="top: 240px"></span>
</div>
<div class="swiper-scrollbar" style="transition-duration: 0ms;">
<div class="swiper-scrollbar-drag"></div>
</div>
</div>
</div>
</figure>
</div>
</div><!-- Slider image -->
<!-- two image -->
<div class="grid fixed-fluid ncss-container" style="position:relative;margin-top: 40px;">
<!-- <div id="" data-qa="grid" data-container-type="image" data-fluid-grid="false" class="grid Z25uR9U5 fixed-fluid ncss-container _2OZV8M5x _1gYnKOgX css-1gfb4pw css-1wf7v22" style="position:relative;margin-top: 60px;"> -->
<div class="ncss-row grid-row" style="margin-bottom: -10px;">
<div class="grid-col va-sm-t ncss-col-lg-12 ncss-col-md-12 ncss-col-sm-12 ncss-col-lg-offset-0 ncss-col-md-offset-0 ncss-col-sm-offset-0">
<div>
<div class="_355YWnGn mb6-sm">
<h2 class="_2PzKMD0A headline-3 text-color-primary-dark card">Just In</h2>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-6 col-lg-6" style="margin-top: 10px; margin-bottom: 10px;">
<div>
<figure class="figure">
<div class="one-img-section">
<div style="width:100%;height:100%">
<img alt="Nike" class="" src="https://static.nike.com/a/images/f_auto/dpr_1.0/h_900,c_limit/cd231640-e176-4030-9b8d-b05dc346a49d/mens-shoes-clothing-accessories.jpg">
</div>
</div>
<figcaption class="one-img-figure figure-caption two-img">
<p data-qa="title" class="figure-caption-title"></p>
<p class="figure-caption-body-2 headline-4"><span>New Air</span> <span>Max Arrivals</span></p>
<div class="hasText">
<a href="#" target="_self" class="caption-link-shop ncss-btn-primary-light" tabindex="0" aria-label="Shop">Shop</a>
</div>
</figcaption>
<a href="#" target="_self" aria-label="Visit Nike"></a>
</figure>
</div>
</div><div class="col-sm-12 col-md-6 col-lg-6" style="margin-top: 10px; margin-bottom: 10px;">
<div>
<figure class="figure">
<div class="one-img-section">
<div style="width:100%;height:100%">
<img alt="Nike" class="" src="https://static.nike.com/a/images/f_auto/dpr_1.0/h_900,c_limit/b5ae8da4-232d-4bf4-b22c-999c721c7832/mens-shoes-clothing-accessories.jpg">
</div>
</div>
<figcaption class="one-img-figure figure-caption two-img">
<p data-qa="title" class="figure-caption-title"></p>
<p class="figure-caption-body-2 headline-4" style="color: black;"><span>Shoes Always</span> <span>$100 & Under</span></p>
<div class="hasText">
<a href="#" target="_self" class="caption-link-shop ncss-btn-primary-dark" tabindex="0" aria-label="Shop">Shop</a>
</div>
</figcaption>
<a href="#" target="_self" aria-label="Visit Nike"></a>
</figure>
</div>
</div>
</div>
</div><!-- two image -->
<!-- one image -->
<div class="grid fixed-fluid ncss-container" style="position:relative;margin-top: 60px;">
<div class="ncss-row grid-row" style="margin-bottom: -10px;">
<div class="grid-col va-sm-t ncss-col-lg-12 ncss-col-md-12 ncss-col-sm-12 ncss-col-lg-offset-0 ncss-col-md-offset-0 ncss-col-sm-offset-0">
<div>
<div class="_355YWnGn mb6-sm">
<h2 class="_2PzKMD0A headline-3 text-color-primary-dark card">Featured products</h2>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12" style="margin-top: 10px; margin-bottom: 10px;">
<div>
<figure class="figure">
<div class="one-img-section">
<div style="width:100%;height:100%">
<img alt="Nike" class="" src="https://static.nike.com/a/images/f_auto/dpr_1.0/h_1967,c_limit/25348fc1-17ec-4de4-839f-594970492a4d/-.jpg">
</div>
</div>
<figcaption class="one-img-figure figure-caption _13xDDA0A o0L_Z0WU _1s-A3PtI">
<div class="_3T7SP3hk" data-qa="card-overlay-content">
<p data-qa="title" class="si35-ISy responsive-display-2-1 _2svRm8bR text-color-primary-dark" style="color:#111111">SUPERREP 2 HIITS HARDER</p>
<p class="figure-caption-body-2 headline-4" style="color:#111111; font-size: 16px;">Air Zoom SuperRep 2 รองเท้ารุ่นใหม่ที่มาพร้อมการอัพเกรดรูปทรงและสัดส่วน เพื่อสร้างการรองรับที่สบายกว่าสำหรับคลาส HIIT อันหนักหน่วงที่สุด คว้ามาใส่ลุยกันเลย</p>
<div class="hasText" style="text-align: center;">
<a href="#" target="_self" class="caption-link-shop ncss-btn-primary-dark" tabindex="0" aria-label="Shop">Shop</a>
</div>
</div>
</figcaption>
<a href="#" target="_self" aria-label="Visit Nike"></a>
</figure>
</div>
</div>
</div>
</div><!-- one image -->
<!-- three image -->
<div class="grid fixed-fluid ncss-container" style="position:relative;margin-top: 60px;">
<div class="ncss-row grid-row" style="margin-bottom: -10px;">
<div class="grid-col va-sm-t ncss-col-lg-12 ncss-col-md-12 ncss-col-sm-12 ncss-col-lg-offset-0 ncss-col-md-offset-0 ncss-col-sm-offset-0">
<div>
<div class="_355YWnGn mb6-sm">
<h2 class="_2PzKMD0A headline-3 text-color-primary-dark card">อุปกรณ์ชิ้นจำเป็น</h2>
</div>
</div>
</div>
</div>
<div class="row ncss-row grid-row">
<div class="col-sm-12 col-md-4 col-lg-4" style="margin-top: 10px; margin-bottom: 10px;">
<div>
<figure class="figure">
<div class="one-img-section">
<div style="width:100%;height:100%">
<img alt="Nike" class="" src="https://static.nike.com/a/images/f_auto/dpr_1.0/h_540,c_limit/ed1c0dc5-df42-46ba-a1e5-9c051fe3c759/-.jpg">
</div>
</div>
<figcaption class="one-img-figure figure-caption two-img" style="width: 220px;">
<div class="hasText">
<a href="#" target="_self" class="caption-link-shop ncss-btn-primary-light" tabindex="0" aria-label="Shop">เสื้อและเสื้อยืด</a>
</div>
</figcaption>
<a href="#" target="_self" aria-label="Visit Nike"></a>
</figure>
</div>
</div><div class="col-sm-12 col-md-4 col-lg-4" style="margin-top: 10px; margin-bottom: 10px;">
<div>
<figure class="figure">
<div class="one-img-section">
<div style="width:100%;height:100%">
<img alt="Nike" class="" src="https://static.nike.com/a/images/f_auto/dpr_1.0/h_540,c_limit/3ff81186-205f-4afa-bd3d-6e56cf96bfe7/-.jpg">
</div>
</div>
<figcaption class="one-img-figure figure-caption two-img" style="width: 220px;">
<div class="hasText">
<a href="#" target="_self" class="caption-link-shop ncss-btn-primary-light" tabindex="0" aria-label="Shop">กางเกงขาสั้น</a>
</div>
</figcaption>
<a href="#" target="_self" aria-label="Visit Nike"></a>
</figure>
</div>
</div><div class="col-sm-12 col-md-4 col-lg-4" style="margin-top: 10px; margin-bottom: 10px;">
<div>
<figure class="figure">
<div class="one-img-section">
<div style="width:100%;height:100%">
<img alt="Nike" class="" src="https://static.nike.com/a/images/f_auto/dpr_1.0/h_540,c_limit/f6a65a10-4a70-4bff-9529-107bdec82075/-.jpg">
</div>
</div>
<figcaption class="one-img-figure figure-caption two-img" style="width: 220px;">
<div class="hasText">
<a href="#" target="_self" class="caption-link-shop ncss-btn-primary-light" tabindex="0" aria-label="Shop">กางเกงขายาวและเลกกิ้ง</a>
</div>
</figcaption>
<a href="#" target="_self" aria-label="Visit Nike"></a>
</figure>
</div>
</div>
</div>
</div><!-- three image -->
<!-- Catalog List -->
<div class="grid fixed-fluid ncss-container catalog-menu" style="position:relative; margin-top: 60px;">
<div class="row">
<div class="col-sm-12 col-md-12 col-lg-12">
<div>
<div class="merchMenu merchMenu2021 card" style="height: 200px;">
<div class="merchMenuWrapper merchMenuWrapper2021" aria-expanded="false">
<h4 class="body-2"><label role="button" for="toggle0" aria-expanded="false" tabindex="0">รองเท้าผู้ชาย</label></h4>
<div style="max-height:0" aria-hidden="false">
<ul role="list">
<li><a href="#" class="body-2" role="listitem" tabindex="0">รองเท้าผู้ชายทั้งหมด</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">รองเท้าไลฟ์สไตล์ผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">รองเท้าวิ่งผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">รองเท้าฟุตบอลผู้ชาย</a></li>
<div aria-hidden="true" role="list" style="display: none;">
<li><a href="#" class="body-2" role="listitem" tabindex="-1">รองเท้ายิมและเทรนนิ่งผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">รองเท้าบาสเก็ตบอลผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">รองเท้า Jordan ผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">รองเท้า Nike Air Max ผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">รองเท้า Nike Flyknit ผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">รองเท้า Nike Free ผู้ชาย</a></li>
</div>
</ul>
</div>
<h4 class="body-2"><label role="button" for="toggle1" aria-expanded="false" tabindex="0">เสื้อผ้าผู้ชาย</label></h4>
<div style="max-height:0" aria-hidden="false">
<ul role="list">
<li><a href="#" class="body-2" role="listitem" tabindex="0">เสื้อผ้าผู้ชายทั้งหมด</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">เสื้อยืดผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">เสื้อแขนยาวผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">เสื้อแขนสั้นผู้ชาย</a></li>
<div aria-hidden="true" role="list" style="display: none;">
<li><a href="#" class="body-2" role="listitem" tabindex="-1">เสื้อมีฮู้ดผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">เสื้อแจ็คเก็ตผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">กางเกงขายาวผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">กางเกงจ๊อกกิ้งผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">กางเกงขาสั้นผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">เสื้อผ้า Dri-FIT ผู้ชาย</a></li>
</div>
</ul>
</div>
<h4 class="body-2"><label role="button" for="toggle2" aria-expanded="false" tabindex="0">อุปกรณ์กีฬาผู้ชาย</label></h4>
<div style="max-height:0" aria-hidden="false">
<ul role="list">
<li><a href="#" class="body-2" role="listitem" tabindex="0">อุปกรณ์เสริมผู้ชายทั้งหมด</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">กระเป๋าผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">หมวกผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">ถุงเท้าผู้ชาย</a></li>
<div aria-hidden="true" role="list" style="display: none;">
<li><a href="#" class="body-2" role="listitem" tabindex="-1">กระเป๋าผ้าใบหูรูดผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">กระเป๋า Duffel ผู้ชาย</a></li>
</div>
</ul>
</div>
<h4 class="body-2"><label role="button" for="toggle3" aria-expanded="false" tabindex="0">สินค้าเด่น</label></h4>
<div style="max-height:0" aria-hidden="false">
<ul role="list">
<li><a href="#" class="body-2" role="listitem" tabindex="0">Black Friday</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">Cyber Monday</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">สินค้าผู้ชายทั้งหมด</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="0">สินค้าผู้ชายออกใหม่</a></li>
<div aria-hidden="true" role="list" style="display: none;">
<li><a href="#" class="body-2" role="listitem" tabindex="-1">Air Force 1 ผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">VaporMax ผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">Air Max 720 ผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">Air Max 270 ผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">Air Max 97 ผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">Air Max 95 ผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">Cortez ผู้ชาย</a></li>
<li><a href="#" class="body-2" role="listitem" tabindex="-1">ของขวัญสำหรับผู้ชาย</a></li>
</div>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- Catalog List -->
</div>
</div><!-- ciclp-app -->
<div id="gen-nav-footer">
<footer class="l-footer bg-black u-full-width nf731" data-version="4.45.0">
<div class="ncss-container nav-fixed-fluid prl5-md pt5-sm pt10-md pb0-md prl10-lg">
<div class="l-footer-body ncss-row mb4-sm">
<div class="ncss-col-sm-12 ncss-col-md-9 va-sm-t">
<div class="hf-accordion-group ncss-row" data-pre="AccordionGroup">
<div class="hf-accordion footer-accordion ncss-col-sm-12 ncss-col-md-4 ncss-col-lg-3 va-sm-t is-open-md" data-index="0" data-maxheight="400" data-pre="Accordion">
<div class="hf-accordion-body" data-var="body">
<ul>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="find a store" class="fs12-nav-sm" href="#" data-pre="ILink">ค้นหาร้านค้า</a>
</li>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="become a member" class="fs12-nav-sm" href="#" data-pre="ILink">สมัครเป็นสมาชิก</a>
</li>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="ลงทะเบียนเพื่อรับข่าวสาร" class="fs12-nav-sm" href="#" data-pre="ILink">ลงทะเบียนเพื่อรับข่าวสาร</a>
</li>
</ul>
</div>
</div>
<div class="hf-accordion footer-accordion ncss-col-sm-12 ncss-col-md-4 ncss-col-lg-3 va-sm-t is-open-md" data-index="1" data-maxheight="400" data-pre="Accordion">
<div class="hf-accordion-body" data-var="body">
<ul>
<li class="footer-link footer-link-header d-sm-h d-md-b">
<a language="th" aria-label="main-footer, รับความช่วยเหลือ" data-type="click_navFooter" data-path="get help" class="nav-uppercase nav-brand" href="https://www.nike.com/th/help" data-pre="ILink">รับความช่วยเหลือ</a>
</li>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="get help:order status" class="fs12-nav-sm" href="#" data-pre="ILink">สถานะคำสั่งซื้อ</a>
</li>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="get help:delivery" class="fs12-nav-sm" href="#" data-pre="ILink">การส่งมอบ</a>
</li>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="get help:returns" class="fs12-nav-sm" href="#" data-pre="ILink">การคืนสินค้า</a>
</li>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="get help:payment options" class="fs12-nav-sm" href="https://www.nike.com/th/help/a/payment-options-gs" data-pre="ILink">ทางเลือกการชำระเงิน</a>
</li>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="get help:contact us" class="fs12-nav-sm" href="#" data-pre="ILink">ติดต่อเรา</a>
</li>
</ul>
</div>
</div>
<div class="hf-accordion footer-accordion ncss-col-sm-12 ncss-col-md-4 ncss-col-lg-3 va-sm-t is-open-md" data-index="2" data-maxheight="400" data-pre="Accordion">
<div class="hf-accordion-body" data-var="body">
<ul>
<li class="footer-link footer-link-header d-sm-h d-md-b">
<a language="th" aria-label="main-footer, เกี่ยวกับ Nike" data-type="click_navFooter" data-path="about nike" class="nav-uppercase nav-brand" href="#" data-pre="ILink">เกี่ยวกับ Nike</a>
</li>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="about nike:news" class="fs12-nav-sm" href="#" data-pre="ILink">ข่าวสาร</a>
</li>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="about nike:careers" class="fs12-nav-sm" href="#" data-pre="ILink">ร่วมงานกับเรา</a>
</li>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="about nike:investors" class="fs12-nav-sm" href="#" data-pre="ILink">ร่วมลงทุนกับเรา</a>
</li>
<li class="footer-link">
<a target="_self" data-type="click_navFooter" data-path="about nike:sustainability" class="fs12-nav-sm" href="#" data-pre="ILink">ความยั่งยืน</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="l-sub-footer ncss-row">
<div class="ncss-col-sm-12 ncss-col-md-6 pt3-sm pl5-sm pl2-md">
<div class="d-md-flx flx-dir-r flx-ai-md-fe">
<div class="fs12-nav-sm fs10-nav-md d-sm-b d-md-ib pb6-sm pt5-sm pb0-md ml4-md sub-footer-copyright" style="padding-bottom: 20px;padding-top: 0;">
<span id="hf_header_label_copyright">© 2020 Nike, Inc. สงวนลิขสิทธิ์</span>
</div>
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- gen-nav-footer -->
</body>
</html>