-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessaging-service.html
807 lines (732 loc) · 40.8 KB
/
messaging-service.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" crossorigin="" />
<!-- Stylesheets -->
<link rel="stylesheet" href="css/vendors.css">
<link rel="stylesheet" href="css/main.css">
<title>Yiping Lee's Portfolio</title>
<meta name="description" content="Yiping Lee (Phoebe) is a UI/UX designer who is passionate about solving problems through compelling design solutions.">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<!-- microsoft clarity -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "er5488qzcy");
</script>
</head>
<body class="" data-barba="wrapper">
<!-- preloader start -->
<div class="preloader js-preloader"></div>
<!-- preloader end -->
<!-- cursor start -->
<div class="cursor js-cursor">
<div class="cursor__wrapper">
<div class="cursor__follower js-follower"></div>
<div class="cursor__label js-label"></div>
<div class="cursor__icon js-icon"></div>
<div class="cursor__slider_icon js-slider-icon">
<svg width="52" height="24" viewBox="0 0 52 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M37 18L43 12L37 6" stroke="white" stroke-width="2.66667" stroke-linecap="round" stroke-linejoin="round" />
<path d="M15 18L9 12L15 6" stroke="white" stroke-width="2.66667" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
</div>
</div>
<!-- cursor end -->
<!-- barba container start -->
<div class="barba-container" data-barba="container">
<main class="main-content ">
<!-- header start -->
<header class="header -container js-header">
<div class="header__bar js-header-bar">
<div class="container">
<div class="row justify-between items-center">
<div class="col-2">
<div class="header__logo">
<a class="base-logo" data-barba href="index.html">
<img class="base-logo-first" src="img/logo-3.svg" alt="logo">
<img class="base-logo-second" src="img/logo-3.svg" alt="logo">
</a>
<a class="menu-logo" data-barba href="index.html">
<img src="img/logo-3.svg" alt="logo">
</a>
</div>
</div>
<div class="col-auto">
<div class="header__right d-flex items-center">
<div class="">
<div class="menu js-menu">
<div class="mobile__background js-mobile-bg"></div>
<div class="menu__container">
<div class="mobile__back js-nav-list-back pointer-events-none">
<a data-barba href="#">Home</a>
</div>
<ul class="nav js-navList">
<li class="">
<a data-barba href="index.html#projects">Projects</a>
</li>
<li class="">
<a data-barba href="about.html">About</a>
</li>
<li class="">
<a data-barba href="mailto:yiping.lee012@gmail.com">Contact</a>
</li>
</ul>
</div>
<div class="mobile__footer js-mobile-footer">
<div class="mobile__copyright">
<p>Copyright © 2023 Yiping Lee</p>
</div>
<div class="mobile__socials">
<a data-barba href="#">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
<a data-barba href="#">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
<!--
<div class="md:d-none ml-30">
<a href="login.html" class="button -sm -green text-white">Sign in</a>
</div>
-->
<div class="header__menu justify-center items-center relative d-none md:d-flex">
<button type="button" class="d-flex items-center justify-center js-nav-open">
<i class="text-black size-32 str-width-1" data-feather="menu"></i>
</button>
<button type="button" class="d-flex items-center justify-center absolute-y-center right-0 pointer-events-none opac-0 js-nav-close">
Close
<i class="text-black size-32 str-width-1 ml-4" data-feather="x"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- header end -->
<section class="page-header -text -">
<div class="container">
<div class="page-header__content">
<div class="row justify-between">
<div class="col-xl-6 col-lg-7 col-md-10">
<div data-anim="slide-up">
<h1 class="page-header__title lh-14">Instant Messaging Service</h1>
</div>
<div data-anim="slide-up delay-2" class="mt-4">
<p class="page-header__text layout-pb-md">Design an instant messaging service system to suit projects.</p>
</div>
</div>
<div class="col-xl-4 col-lg-5 col-md-10">
<div class="row x-gap-32 y-gap-40">
<div class="col-6">
<h5 class="text-xl fw-600">Role</h5>
<div class="y-gap-4 mt-12">
<p>UI/UX designer and Design Lead</p>
</div>
</div>
<div class="col-6">
<h5 class="text-xl fw-600">Device</h5>
<div class="y-gap-4 mt-12">
<p>Mobile and Desktop</p>
</div>
</div>
<div class="col-6">
<h5 class="text-xl fw-600">Tools</h5>
<div class="y-gap-4 mt-12">
<p>Figma, Illustrator, Sketch and Zeplin</p>
</div>
</div>
<div class="col-6">
<h5 class="text-xl fw-600">Published</h5>
<div class="y-gap-4 mt-12">
<p>October 2021</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<div class="layout-pt-md"></div>
<section data-parallax="0.7" class="ratio ratio-16:9">
<div data-parallax-target class="bg-image js-lazy" data-bg="img/projects/messaging_service/messaging-service.png"></div>
</section>
<div class="layout-pt-md"></div>
<section class="layout-pt-sm layout-pb-sm">
<div class="container">
<div class="row y-gap-64">
<div class="col-12">
<div class="row y-gap-16 justify-between">
<div class="col-lg-4">
<h4 class="text-xl fw-600">Key Challenge</h4>
</div>
<div class="col-lg-8 col-md-10">
<ul class="ul-list y-gap-16">
<li class="">Balancing simplicity and functionality: Instant messaging services require a balance between being easy to use and having the necessary features and functionality needed to meet user needs</li>
<li class="">Consistency across devices: Ensure that the UI/UX is consistent across various devices and platforms, as users expect a seamless experience regardless of the device they are using</li>
</ul>
</div>
</div>
</div>
<div class="col-12">
<div class="row y-gap-16 justify-between">
<div class="col-lg-4">
<h4 class="text-xl fw-600">Solution</h4>
</div>
<div class="col-lg-8 col-md-10">
<ul class="ul-list y-gap-16">
<li class="">Consistent design: Maintaining consistency in the design elements, such as color, typography, and layout, can help create a sense of familiarity and reduce confusion</li>
<li class="">Clear navigation: Intuitive navigation that is easy to understand and use can help users find what they are looking for and reduce frustration</li>
<li class="">Simple interface: A simple, clean interface with clear labeling can help users focus on the content and tasks at hand, rather than getting lost in unnecessary features and functions</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Wireframe -->
<section class="layout-pt-md layout-pb-md section-bg-color">
<div class="section-bg-color__item -wide"></div>
<div class="container">
<div class="row justify-center text-center">
<div class="col-auto">
<div class="sectionHeading">
<div class="sectionHeading__subtitle">
<span>Mobile</span>
</div>
<h2 class="sectionHeading__title">Wireframe</h2>
</div>
</div>
<div calss="py-50 px-64">
<img class="initial-img" src="img/projects/messaging_service/wireframes-mobile.png" alt="image">
</div>
<!--
<div class="layout-pt-md"></div>
<div class="col-auto">
<div class="sectionHeading">
<h2 class="sectionHeading__title">Desktop</h2>
</div>
</div>
<div calss="py-50 px-64">
<img class="initial-img" src="img/projects/messaging_service/wireframes_desktop.png" alt="image">
</div>
-->
</div>
</div>
</section>
<!-- Wireframe -->
<div class="layout-pt-lg"></div>
<!-- Flow -->
<section class="layout-pt-md layout-pb-md section-bg-color">
<div class="section-bg-color__item -wide"></div>
<div class="container">
<div class="row justify-center text-center">
<div class="col-auto">
<div class="sectionHeading">
<div class="sectionHeading__subtitle">
<span>Mobile</span>
</div>
<h2 class="sectionHeading__title">Screen Flow</h2>
</div>
</div>
<div calss="py-50 px-64">
<img class="initial-img" src="img/projects/messaging_service/screen-flow.png" alt="image">
</div>
</div>
</div>
</section>
<!-- flow -->
<div class="layout-pt-lg"></div>
<!-- Mobile -->
<section class="layout-pt-md layout-pb-md section-bg-color">
<div class="section-bg-color__item -wide"></div>
<div class="container">
<div class="row justify-center text-center">
<div class="col-auto">
<div class="sectionHeading">
<div class="sectionHeading__subtitle">
<span>Mobile</span>
</div>
<!-- contact and chatting list -->
<h2 class="sectionHeading__title">Contact and Chatting List</h2>
<section class="layout-pt-xs layout-pb-sm">
<div data-anim="slide-up delay-2" class="row justify-center sm:pt-40" data-cursor-slider="slider">
<div class="col-xl-4">
<div class="sectionSlider sm:px-16 js-sectionSlider" data-cursor-slider="slider" data-gap="150" data-slider-col="base-1 lg-1 md-1 sm-1" data-pagination data-loop>
<div class="phone-slider-image__bg">
<img src="img/iphone-12-pro-max--pacific-blue.png" alt="phone image">
</div>
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="phone-slider-image">
<img src="img/projects/messaging_service/contact_1.png" alt="phone image">
</div>
</div>
<div class="swiper-slide">
<div class="phone-slider-image">
<img src="img/projects/messaging_service/contact_2.png" alt="phone image">
</div>
</div>
<div class="swiper-slide">
<div class="phone-slider-image">
<img src="img/projects/messaging_service/contact_3.png" alt="phone image">
</div>
</div>
<div class="swiper-slide">
<div class="phone-slider-image">
<img src="img/projects/messaging_service/chatting_1.png" alt="phone image">
</div>
</div>
<div class="swiper-slide">
<div class="phone-slider-image">
<img src="img/projects/messaging_service/chatting_2.png" alt="phone image">
</div>
</div>
<div class="swiper-slide">
<div class="phone-slider-image">
<img src="img/projects/messaging_service/chatting_3.png" alt="phone image">
</div>
</div>
</div>
<div class="pagination -slider mt-48 js-pagination"></div>
</div>
</div>
</div>
</section>
<!-- end of contact and chatting list -->
<div class="layout-pt-lg"></div>
<!-- creat a group -->
<section class="layout-pt-sm layout-pb-sm">
<div class="container">
<div class="row justify-center text-center">
<div class="col-xl-8 col-lg-7">
<div class="sectionHeading">
<h2 class="sectionHeading__title">Create a Group</h2>
<p class="sectionHeading__text mt-20">The feature can greatly enhance the user experience and make communication more efficient and effective, such as:</p>
<ul class="ul-list y-gap-16 layout-pt-xxs text-left">
<li class="">Improved communication: improves collaboration among team members in real time</li>
<li class="">Time-saving: Saves time and reduces the need for repetitive communication by allowing users to send one message to multiple people at once</li>
<li class="">Organize: Groups make it easier to manage conversations, messages, and files shared within the group</li>
<li class="">Convenient: A group provides an easy way to connect with multiple people with similar interests or goals, making it easier to stay in touch and share information</li>
</ul>
</div>
</div>
</div>
<div data-anim-wrap class="row y-gap-48 pt-60 md:pt-48">
<div data-anim-child="slide-up delay-1" class="col-lg-3 col-sm-6">
<div class="text-center hover-group">
<div class="d-flex justify-center items-center size-255 mx-auto rounded-full bg-white shadow-card | hg:bg-text-dark t-base">
<img class="max-w-100" src="img/projects/messaging_service/create_group_1.png" alt="image">
</div>
<div class="mt-30">
<h4 class="text-xl lh-12">1. Create a Group</h4>
<p class="mt-10">Clicking the icon located on the top right corner to bring up the drawer.</p>
</div>
</div>
</div>
<div data-anim-child="slide-up delay-2" class="col-lg-3 col-sm-6">
<div class="text-center hover-group">
<div class="d-flex justify-center items-center size-255 mx-auto rounded-full bg-white shadow-card | hg:bg-text-dark t-base">
<img class="max-w-100" src="img/projects/messaging_service/create_group_3.png" alt="image">
</div>
<div class="mt-30">
<h4 class="text-xl lh-12">2. Fill the form</h4>
<p class="mt-10">Entering group name and selecting members.</p>
</div>
</div>
</div>
<div data-anim-child="slide-up delay-3" class="col-lg-3 col-sm-6">
<div class="text-center hover-group">
<div class="d-flex justify-center items-center size-255 mx-auto rounded-full bg-white shadow-card | hg:bg-text-dark t-base">
<img class="max-w-100" src="img/projects/messaging_service/create_group_4.png" alt="image">
</div>
<div class="mt-30">
<h4 class="text-xl lh-12">3. Submit</h4>
<p class="mt-10">Click the "Create" button after fill out the form.</p>
</div>
</div>
</div>
<div data-anim-child="slide-up delay-4" class="col-lg-3 col-sm-6">
<div class="text-center hover-group">
<div class="d-flex justify-center items-center size-255 mx-auto rounded-full bg-white shadow-card | hg:bg-text-dark t-base">
<img class="max-w-100" src="img/projects/messaging_service/create_group_5.png" alt="image">
</div>
<div class="mt-30">
<h4 class="text-xl lh-12">4. Success</h4>
<p class="mt-10">Success toast will appear after the group successfully created.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--
<section class="layout-pt-sm layout-pb-sm">
<div class="container">
<div data-anim-wrap class="tabs -active-3 pt-60 js-tabs">
<div class="row y-gap-64 justify-between items-center">
<div class="col-xl-4 col-lg-5">
<div data-anim-child="fancy-1 delay-1">
<div class="sectionHeading">
<h2 class="sectionHeading__title">Creat a Group</h2>
</div>
</div>
<div class="tabs__controls tabs-line row y-gap-40 pt-60 sm:pt-40 js-tabs-controls">
<div data-anim-child="fancy-1 delay-4" class="col-12 relative z-2">
<div class="tabs__button rounded-8 js-tabs-button is-active " data-tab-target=".-tab-item-1">
<div class="d-flex sm:direction-column hover-group">
<div class="-tab-active d-flex justify-center items-center flex-grow size-60 rounded-20 text-xl fw-600 bg-light-4 | hg:bg-blue-dark hg:text-white t-base">
1
</div>
<div class="ml-40 sm:ml-0 sm:mt-20 text-left">
<h4 class="text-xl fw-600 lh-1">Call to action</h4>
<p class="mt-10">Click the icon on the right top, and the drawer will appear.</p>
</div>
</div>
</div>
</div>
<div data-anim-child="fancy-1 delay-5" class="col-12 relative z-2">
<div class="tabs__button rounded-8 js-tabs-button " data-tab-target=".-tab-item-2">
<div class="d-flex sm:direction-column hover-group">
<div class="-tab-active d-flex justify-center items-center flex-grow size-60 rounded-20 text-xl fw-600 bg-light-4 | hg:bg-blue-dark hg:text-white t-base">
2
</div>
<div class="ml-40 sm:ml-0 sm:mt-20 text-left">
<h4 class="text-xl fw-600 lh-1">Fill the form</h4>
<p class="mt-10">insert group name and choose members.</p>
</div>
</div>
</div>
</div>
<div data-anim-child="fancy-1 delay-5" class="col-12 relative z-2">
<div class="tabs__button rounded-8 js-tabs-button " data-tab-target=".-tab-item-3">
<div class="d-flex sm:direction-column hover-group">
<div class="-tab-active d-flex justify-center items-center flex-grow size-60 rounded-20 text-xl fw-600 bg-light-4 | hg:bg-blue-dark hg:text-white t-base">
3
</div>
<div class="ml-40 sm:ml-0 sm:mt-20 text-left">
<h4 class="text-xl fw-600 lh-1">Choose member</h4>
<p class="mt-10">Allows to choose 100 members.</p>
</div>
</div>
</div>
</div>
<div data-anim-child="fancy-1 delay-5" class="col-12 relative z-2">
<div class="tabs__button rounded-8 js-tabs-button " data-tab-target=".-tab-item-4">
<div class="d-flex sm:direction-column hover-group">
<div class="-tab-active d-flex justify-center items-center flex-grow size-60 rounded-20 text-xl fw-600 bg-light-4 | hg:bg-blue-dark hg:text-white t-base">
4
</div>
<div class="ml-40 sm:ml-0 sm:mt-20 text-left">
<h4 class="text-xl fw-600 lh-1">Filled</h4>
<p class="mt-10">Click the buttom after filled the form.</p>
</div>
</div>
</div>
</div>
<div data-anim-child="fancy-1 delay-6" class="col-12 relative z-2">
<div class="tabs__button rounded-8 js-tabs-button " data-tab-target=".-tab-item-5">
<div class="d-flex sm:direction-column hover-group">
<div class="-tab-active d-flex justify-center items-center flex-grow size-60 rounded-20 text-xl fw-600 bg-light-4 | hg:bg-blue-dark hg:text-white t-base">
5
</div>
<div class="ml-40 sm:ml-0 sm:mt-20 text-left">
<h4 class="text-xl fw-600 lh-1">Success</h4>
<p class="mt-10">The success toaste will jump to the screen if success.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-xl-6 col-lg-7">
<div class="tabs__content js-tabs-content">
<div class="tabs__pane -tab-item-1 is-active ">
<div data-anim-child="fancy-1 delay-3">
<div class="atropos -no-shadow js-atropos">
<div class="atropos-scale">
<div class="atropos-rotate">
<div class="atropos-inner overflow-visible d-flex justify-center items-center">
<img data-atropos-offset="0" class="initial-img relative z-1" src="img/steps.png" alt="image">
<div class="absolute-center z-2">
<img data-atropos-offset="5" class="max-w-100" src="img/projects/messaging_service/creat_group_1.png" alt="image">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tabs__pane -tab-item-2 ">
<div data-anim-child="fancy-1 delay-3">
<div class="atropos -no-shadow js-atropos">
<div class="atropos-scale">
<div class="atropos-rotate">
<div class="atropos-inner overflow-visible d-flex justify-center items-center">
<img data-atropos-offset="0" class="initial-img relative z-1" src="img/steps.png" alt="image">
<div class="absolute-center z-2">
<img data-atropos-offset="5" class="max-w-100" src="img/projects/messaging_service/creat_group_2.png" alt="image">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tabs__pane -tab-item-3 ">
<div data-anim-child="fancy-1 delay-3">
<div class="atropos -no-shadow js-atropos">
<div class="atropos-scale">
<div class="atropos-rotate">
<div class="atropos-inner overflow-visible d-flex justify-center items-center">
<img data-atropos-offset="0" class="initial-img relative z-1" src="img/steps.png" alt="image">
<div class="absolute-center z-2">
<img data-atropos-offset="5" class="max-w-100" src="img/projects/messaging_service/creat_group_3.png" alt="image">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tabs__pane -tab-item-4 ">
<div data-anim-child="fancy-1 delay-3">
<div class="atropos -no-shadow js-atropos">
<div class="atropos-scale">
<div class="atropos-rotate">
<div class="atropos-inner overflow-visible d-flex justify-center items-center">
<img data-atropos-offset="0" class="initial-img relative z-1" src="img/steps.png" alt="image">
<div class="absolute-center z-2">
<img data-atropos-offset="5" class="max-w-100" src="img/projects/messaging_service/creat_group_4.png" alt="image">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tabs__pane -tab-item-5 ">
<div data-anim-child="fancy-1 delay-3">
<div class="atropos -no-shadow js-atropos">
<div class="atropos-scale">
<div class="atropos-rotate">
<div class="atropos-inner overflow-visible d-flex justify-center items-center">
<img data-atropos-offset="0" class="initial-img relative z-1" src="img/steps.png" alt="image">
<div class="absolute-center z-2">
<img data-atropos-offset="5" class="max-w-100" src="img/projects/messaging_service/creat_group_5.png" alt="image">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
-->
<!-- end of chatting list -->
<!-- others -->
<section class="layout-pt-sm layout-pb-lg">
<div class="container">
<div class="row y-gap-32">
<h2 class="sectionHeading__title">Other Features</h2>
<div class="col-lg-4 col-md-6">
<div class="text-center">
<div class="d-flex justify-center items-center mx-auto | hg:bg-text-dark t-base">
<img class="max-w-100" src="img/projects/messaging_service/group_setting.png" alt="image">
</div>
<div class="mt-30">
<h4 class="text-xl lh-12">Group Setting</h4>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="text-center">
<div class="d-flex justify-center items-center mx-auto | hg:bg-text-dark t-base">
<img class="max-w-100" src="img/projects/messaging_service/announce.png" alt="image">
</div>
<div class="mt-30">
<h4 class="text-xl lh-12">Announcement Setting</h4>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="text-center">
<div class="d-flex justify-center items-center mx-auto | hg:bg-text-dark t-base">
<img class="max-w-100" src="img/projects/messaging_service/group_mamber.png" alt="image">
</div>
<div class="mt-30">
<h4 class="text-xl lh-12">Group Member Settings</h4>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end of others -->
</div>
</div>
</div>
</div>
</section>
<!-- End of Mobile -->
<div class="layout-pt-lg"></div>
<!-- desktop -->
<section class="layout-pt-md layout-pb-md section-bg-color">
<div class="section-bg-color__item -wide"></div>
<div class="container">
<div class="row justify-center text-center">
<div class="col-auto">
<div class="sectionHeading">
<div class="sectionHeading__subtitle">
<span>Desktop</span>
</div>
<h2 class="sectionHeading__title">Screens</h2>
</div>
</div>
<section class="layout-pt-xs layout-pb-sm">
<div class="container">
<div class="row justify-center">
<div class="col-xl-8 col-lg-9">
<div class="sectionSlider relative js-sectionSlider" data-cursor-slider="slider" data-gap="48" data-slider-col="base-1 lg-1 md-1 sm-1" data-center data-loop>
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="ratio ratio-97:55">
<img class="absolute-full-center object-fit-cover rounded-8" src="img/projects/messaging_service/desktop_1.png" alt="Image">
</div>
</div>
<div class="swiper-slide">
<div class="ratio ratio-97:55">
<img class="absolute-full-center object-fit-cover rounded-8" src="img/projects/messaging_service/desktop_2.png" alt="Image">
</div>
</div>
<div class="swiper-slide">
<div class="ratio ratio-97:55">
<img class="absolute-full-center object-fit-cover rounded-8" src="img/projects/messaging_service/desktop_3.png" alt="Image">
</div>
</div>
<div class="swiper-slide">
<div class="ratio ratio-97:55">
<img class="absolute-full-center object-fit-cover rounded-8" src="img/projects/messaging_service/desktop_4.png" alt="Image">
</div>
</div>
</div>
<div class="nav -slider -absolute-center z-5 px-30 justify-between md:justify-center md:pt-60 sm:pt-40">
<div data-cursor class="nav__item -left js-prev">
<i class="icon" data-feather="arrow-left"></i>
</div>
<div data-cursor class="nav__item -right ml-20 js-next">
<i class="icon" data-feather="arrow-right"></i>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</section>
<!-- end of desktop -->
<div class="layout-pt-lg"></div>
<div class="layout-pb-lg">
<section class="">
<div class="container">
<div class="related-nav py-30">
<div class="row justify-between items-center">
<div class="col-md-auto col-6">
<a data-barba href="ilife.html" class="related-nav__item -prev decoration-none">
<div class="related-nav__arrow">
<i class="icon size-20 pt-4" data-feather="arrow-left"></i>
</div>
<div class="related-nav__content">
<div class="text-xl fw-600">Prev</div>
<p class="text-dark mt-8">I-Life</p>
</div>
</a>
</div>
<div class="col-md-auto col-6 d-flex justify-end">
<a data-barba href="gaming.html" class="related-nav__item -prev text-right decoration-none">
<div class="related-nav__content">
<div class="text-xl fw-600">Next</div>
<p class="text-dark mt-8">Gaming Platform</p>
</div>
<div class="related-nav__arrow">
<i class="icon size-20 pt-4" data-feather="arrow-right"></i>
</div>
</a>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- footer -->
<div class="svg-shape">
<svg width="1920" height="60" viewBox="0 0 1920 60" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M0 30C0 13.4315 13.4315 0 30 0H1890C1906.57 0 1920 13.4315 1920 30V60H0V30Z" fill="#1A3454" />
</svg>
</div>
<footer class="footer -type-1 bg-dark-1">
<div class="container bg-dark-1">
<div class="row y-gap-16 justify-between items-center sm:justify-center sm:text-center">
<div class="col-md-auto">
<div class="footer__right text-white">
<span class="footer__copyright text-white">
Copyright © 2023 Yiping Lee
</span>
</div>
</div>
<div class="col-md-auto">
<div class="footer__right">
<div class="footer__socials socials sm:justify-center">
<a href="about-1.html" class="socials__item text-dark-1">
<i class="fa fa-facebook" aria-hidden="true"></i>
</a>
<a href="about-1.html" class="socials__item text-dark-1">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
<a href="about-1.html" class="socials__item text-dark-1">
<i class="fa fa-instagram" aria-hidden="true"></i>
</a>
<a href="about-1.html" class="socials__item text-dark-1">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- End of footer -->
</main>
</div>
<!-- barba container end -->
<!-- JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/atropos@1.0.1/atropos.js"></script>
<script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js" integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA==" crossorigin=""></script>
<script src="js/vendors.js"></script>
<script src="js/main.js"></script>
</body>
</html>