-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpj-1.html
More file actions
467 lines (428 loc) · 20.4 KB
/
pj-1.html
File metadata and controls
467 lines (428 loc) · 20.4 KB
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
<!doctype html>
<html lang="jp">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shu/port</title>
<link href="./style.css" rel="stylesheet" />
<link href="./loading.css" rel="stylesheet" />
<link rel="icon" type="image/png" href="./img/favicon.png" />
<!-- React 依赖 -->
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
</head>
<body class="bg-base-bgdark w-screen h-auto text-white">
<header
class="w-screen px-[4%] py-8 h-auto flex justify-start items-center"
>
<button onclick="backtoHome()" class="w-auto h-auto">
<svg
xmlns="http://www.w3.org/2000/svg"
width="34"
height="28"
fill="none"
viewBox="0 0 34 28"
>
<path
fill="#D8D8D8"
d="M29.405 0a14.588 14.588 0 0 1 1.964 7.334c0 8.074-6.523 14.619-14.569 14.619-8.047 0-14.57-6.545-14.57-14.619 0-2.673.716-5.178 1.965-7.334A16.825 16.825 0 0 0 0 11.144C0 20.454 7.522 28 16.8 28s16.8-7.547 16.8-16.856A16.82 16.82 0 0 0 29.405 0Z"
/>
</svg>
</button>
</header>
<section
class="w-full px-[4%] flex flex-col space-y-10 items-start text-white h-screen"
>
<!-- heroimg -->
<div class="w-full h-[88%]">
<div class="bg-macmockup bg-cover w-full h-full rounded-2xl"></div>
</div>
</section>
<!-- introduction -->
<section class="h-auto w-auto mx-[4%] border-b-2 border-white">
<div
class="py-40 px-[18%] text-base-fontlight text-xl leading-loose w-full h-auto flex flex-col justify-start items-start "
>
Portは、アプリなしでオンライン通話できるウェブプラットフォームです。<br />
カウンセリング、占い、コンサル、
外国語会話、暇つぶしの話し相手など、様々な用途に対応しています。
<br><br><br>
✨このプロダクトのリニュアルデザインをリードしました。
<br><br>
<p class="text-sm">🕒3ヶ月 <br>👥PM1名、マーケ1名、エンジニア2名</p>
</div>
</section>
<!-- 图片对比组件 -->
<section class="h-auto w-auto mx-[4%] border-b-2 border-white text-white/40 ">
<div class="w-full h-auto px-[18%] py-40 flex justify-around">
<div class="flex justify-start items-center w-auto ">*after</div>
<div id="image-compare-root"></div>
<div class="flex justify-end items-center w-auto ">*before</div>
</div>
</section>
<script type="text/babel">
function ImageCompare() {
const [position, setPosition] = React.useState(50);
const [isDragging, setIsDragging] = React.useState(false);
function handleMouseDown() {
setIsDragging(true);
}
function handleMouseUp() {
setIsDragging(false);
}
function handleMouseMove(e) {
if (!isDragging) return;
const rect = e.currentTarget.getBoundingClientRect();
const newPosition = ((e.clientX - rect.left) / rect.width) * 100;
setPosition(Math.min(Math.max(newPosition, 0), 100));
}
React.useEffect(() => {
document.addEventListener('mouseup', handleMouseUp);
return () => document.removeEventListener('mouseup', handleMouseUp);
}, [isDragging]);
return (
<div
style={{
position: 'relative',
width: '400px',
height: '800px',
margin: '0 auto',
overflow: 'hidden'
}}
onMouseMove={handleMouseMove}
>
{/* 图2 */}
<div style={{
position: 'absolute',
top: 0,
left: 0,
width: '100%',
height: '100%',
backgroundImage: "url('./img/mock_after.png')",
backgroundSize: 'cover',
backgroundPosition: 'center',
clipPath: `inset(0 ${100 - position}% 0 0)`
}} />
{/* 图1 */}
<div style={{
position: 'absolute',
top: 0,
left: 0,
width: '100%',
height: '100%',
backgroundImage: "url('./img/mock_before.png')",
backgroundSize: 'cover',
backgroundPosition: 'center',
clipPath: `inset(0 0 0 ${position}%)`
}} />
{/* 滑块 */}
<div
style={{
position: 'absolute',
top: 0,
bottom: 0,
width: '4px',
backgroundColor: 'white',
cursor: 'ew-resize',
left: `${position}%`
}}
onMouseDown={handleMouseDown}
>
<div style={{
position: 'absolute',
top: '50%',
left: '50%',
transform: 'translate(-50%, -50%)',
width: '32px',
height: '32px',
backgroundColor: 'black',
borderRadius: '50%',
boxShadow: '0 2px 4px rgba(0,0,0,0.1)',
display: 'flex',
alignItems: 'center',
justifyContent: 'center'
}}>
<svg
style={{ width: '20px', height: '20px', color: '#fff' }}
fill="currentColor"
height="20"
viewBox="0 0 512 512"
width="20"
xmlns="http://www.w3.org/2000/svg"
>
<g>
<path d="m217.4 93.8c-9.8 0-17.7 7.9-17.7 17.7v126.9h-79.5l23.3-20.2c7.4-6.4 8.2-17.6 1.8-24.9-6.4-7.4-17.5-8.2-24.9-1.8l-59.2 51.2c-.2.1-.3.3-.4.4-.5.5-1 1-1.4 1.5-.3.4-.7.8-1 1.2-.4.6-.8 1.2-1.1 1.9-.2.4-.5.8-.7 1.2-.3.7-.6 1.5-.8 2.3-.1.4-.3.7-.3 1.1-.2 1-.3 2-.3 3.1 0 .2-.1.4-.1.6s.1.4.1.6c0 1 .1 2.1.3 3.1.1.4.2.7.3 1.1.2.8.5 1.6.8 2.3.2.4.4.8.7 1.2.3.6.7 1.3 1.1 1.9.3.4.6.8 1 1.2.5.5.9 1.1 1.4 1.5.1.1.3.3.4.4l59.2 51.2c3.3 2.9 7.5 4.3 11.6 4.3 5 0 9.9-2.1 13.4-6.1 6.4-7.4 5.6-18.5-1.8-24.9l-23.3-20.2h79.5v126.9c0 9.8 7.9 17.7 17.7 17.7s17.7-7.9 17.7-17.7v-289.1c-.1-9.7-8-17.6-17.8-17.6z"/>
<path d="m456.8 255.4c0-1-.1-2.1-.3-3.1-.1-.4-.2-.7-.3-1.1-.2-.8-.5-1.6-.8-2.3-.2-.4-.4-.8-.7-1.2-.4-.6-.7-1.3-1.1-1.9-.3-.4-.6-.8-1-1.2-.5-.5-.9-1.1-1.4-1.5-.1-.1-.3-.3-.4-.4l-59.2-51.2c-7.4-6.4-18.5-5.6-24.9 1.8s-5.6 18.5 1.8 24.9l23.3 20.2h-79.5v-127c0-9.8-7.9-17.7-17.7-17.7s-17.7 7.9-17.7 17.7v289.1c0 9.8 7.9 17.7 17.7 17.7s17.7-7.9 17.7-17.7v-126.8h79.5l-23.3 20.2c-7.4 6.4-8.2 17.6-1.8 24.9 3.5 4 8.4 6.1 13.4 6.1 4.1 0 8.2-1.4 11.6-4.3l59.2-51.2c.2-.1.3-.3.4-.4.5-.5 1-1 1.4-1.5.3-.4.7-.8 1-1.2.4-.6.8-1.2 1.1-1.9.2-.4.5-.8.7-1.2.3-.7.6-1.5.8-2.3.1-.4.3-.7.3-1.1.2-1 .3-2 .3-3.1 0-.2.1-.4.1-.6s-.2-.5-.2-.7z"/>
</g>
</svg>
</div>
</div>
</div>
);
}
// 确保在 DOM 加载完成后渲染
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', () => {
ReactDOM.render(<ImageCompare />, document.getElementById('image-compare-root'));
});
} else {
ReactDOM.render(<ImageCompare />, document.getElementById('image-compare-root'));
}
</script>
<!-- user&problems -->
<section class=" h-auto w-auto mx-[4%] border-b-2 border-white">
<!-- users -->
<div class="w-full h-auto px-[18%] pt-20 pb-40 flex space-x-28 justify-between border-b-[1px] border-white/20 ">
<!-- title -->
<div class="w-[20%] h-auto text-4xl flex flex-col tracking-wide">USERS
<div class="text-2xl">of ports</div>
</div>
<!-- profile -->
<div class="flex flex-col w-[80%] h-auto space-y-28">
<!-- userB -->
<div class="flex w-full h-auto space-x-4 items-center">
<!-- icon1 -->
<div class="bg-iconB bg-cover min-w-[160px] min-h-[160px] "></div>
<!-- text1 -->
<div class=" w-auto h-auto flex flex-col space-y-2">
<p class="text-white/40 text-sm">B-user</p>
<p class="text-base">フリー心理コンサルタントのHARUです。<br>SNSで無料配信していますが、最近Portを利用してビジネスを始めたいと思います。</p>
</div>
</div>
<!-- userC -->
<div class="flex w-full h-auto space-x-4 items-center">
<!-- icon2 -->
<div class="bg-iconC bg-cover min-w-[160px] min-h-[160px] "></div>
<!-- text2 -->
<div class=" w-auto h-auto flex flex-col space-y-2">
<p class="text-white/40 text-sm">C-user</p>
<p class="text-base">職場の人間関係を悩んでいます。<br>相談相手がなくてSNSでたまにHARUを見かけ、Portを使って相談したいと思います。</p>
</div>
</div>
</div>
</div>
<!-- problems -->
<div class="w-full h-auto px-[18%] pt-20 pb-40 flex space-x-28 justify-between ">
<!-- title -->
<div class="w-[20%] h-auto text-4xl flex flex-col tracking-wide">Problems
<div class="text-2xl">before renew</div>
</div>
<!-- problems -->
<div class="flex flex-col w-[80%] h-auto space-y-28">
<!-- problemB -->
<div class="flex w-full h-auto space-x-4 items-center">
<div class="bg-iconB bg-cover min-w-[160px] min-h-[160px] "></div>
<!-- text -->
<div class=" w-auto h-auto flex flex-col space-y-2">
<p class="text-white/40 text-sm">B-user</p>
<p class="text-base">📞コールが少ない.. <br>😞HPの設定が面倒.. <br>...... </p>
</div>
</div>
<!-- problemC -->
<div class="flex w-full h-auto space-x-4 items-center">
<!-- icon2 -->
<div class="bg-iconC bg-cover min-w-[160px] min-h-[160px] "></div>
<!-- text2 -->
<div class=" w-auto h-auto flex flex-col space-y-2">
<p class="text-white/40 text-sm">C-user</p>
<p class="text-base">👀料金などの情報を見つけるのは難しい.. <br>💰カード情報の提供に不安感がある.. <br>...... </p>
</div>
</div>
</div>
</div>
</section>
<!-- 接续 -->
<section class="h-auto w-auto mx-[4%]">
<div
class="py-32 px-[18%] text-white text-xl leading-wide w-full h-auto flex flex-col justify-start items-start "
>
今までの課題を踏まえて、機能やユーザーフロー、UIの改善とリニュアルを行いました。<br>
また、それぞれの課題に対するユースケースを整理し、デザイン案まで落とし込んだ上で、チームと共に更新を完成させました。
</div>
<!-- gif -->
<div class="flex justify-between h-screen items-start w-full mt-8">
<div
class="bg-base-bgme rounded-2xl w-[33%] h-[70%] flex justify-center items-center relative"
>
<div class="bg-allsm bg-contain w-[56%] h-[84%] bg-no-repeat"></div>
<div
class="absolute px-4 py-2 w-auto h-auto bg-base-bgdark rounded-xl right-2 top-2 text-sm text-base-fontdark"
>
home(sp)
</div>
</div>
<div
class="bg-base-bgme rounded-2xl w-[65%] relative h-[70%] flex justify-center items-center"
>
<div class="bg-allpc bg-contain w-[90%] h-[84%] bg-no-repeat"></div>
<div
class="absolute px-4 py-2 w-auto h-auto bg-base-bgdark rounded-xl right-2 top-2 text-sm text-base-fontdark"
>
home(pc)
</div>
</div>
</div>
</section>
<!-- 提升信赖感 -->
<section class=" h-auto w-auto mx-[4%] border-b-2 border-white">
<div class="w-full h-auto px-[18%] pt-20 pb-28 flex flex-col ">
<!-- title -->
<div class="w-[40%] h-auto text-4xl tracking-wide">C-userの信頼感 <br>を上げる<br>↓
</div>
<!-- solution_title1 -->
<div class="w-auto h-auto pt-20 flex flex-col space-y-2">
<p class="text-2xl tracking-wide">⭐️UIリニューアルによるブランドイメージの薄まり</p>
<p class="text-base text-white/70">ユーザー体験の一貫性のため、簡潔なスタイルを意識しながらデザインを行いました。各Bユーザーの特性を邪魔しないように、配色はシンプルの低彩度色にしました。</p>
</div>
<!-- solution_title2 -->
<div class="w-auto h-auto py-20 flex flex-col space-y-2 border-b-[1px] border-white/20">
<p class="text-2xl tracking-wide">💻情報アーキテクチャの再設計</p>
<p class="text-base text-white/70">情報を効率よく伝えることをコンセプトにしました。ユーザーが迷わずに行動できることで、信頼感の向上が期待できます。</p>
</div>
<!-- mock+text -->
<div class="flex w-full h-screen">
<!-- before -->
<div class="w-1/2 h-full flex flex-col py-32 justify-center items-center">
<!-- before_mock -->
<div class="bg-hp_before bg-contain bg-no-repeat bg-center w-[80%] h-full"></div>
<!-- before_text -->
<div class="w-full text-center pt-8 text-white/70 text-sm">*before* <br>first viewには有効情報がほぼゼロ。</div>
</div>
<!-- after -->
<div class="w-1/2 h-full flex flex-col py-32 justify-center items-center">
<!-- after_mock -->
<div class="bg-hp_after bg-contain bg-center bg-no-repeat w-[80%] h-full"></div>
<!-- after_text -->
<div class="w-full text-center pt-8 text-white text-sm">*after* <br>コンパクトなレイアウトで必要な情報が一目瞭然。<br>通話実績などのバッジタグ機能を追加しました。</div>
</div>
</div>
</div>
</div>
</section>
<!-- 增加call -->
<section class=" h-auto w-auto mx-[4%] border-b-2 border-white">
<div class="w-full h-auto px-[18%] pt-28 pb-28 flex flex-col ">
<!-- title -->
<div class="w-[40%] h-auto text-4xl tracking-wide">B-userのビジネス成長 <br>を促進する<br>↓
</div>
<!-- solution_title1 -->
<div class="w-auto h-auto pt-20 flex flex-col space-y-2">
<p class="text-2xl tracking-wide">⭐️ユーザーフローの改善</p>
<p class="text-base text-white/70">登録や通話フローの簡潔化、また直感的なマイクロコピーなど細かいところまで改善を行いました。</p>
</div>
<!-- solution_title2 -->
<div class="w-auto h-auto py-20 flex flex-col space-y-2 border-b-[1px] border-white/20">
<p class="text-2xl tracking-wide">💡HP編集と設置の再設計</p>
<p class="text-base text-white/70">階層的な設計を意識しながら、ビジュアル面も強化してユーザー体験を向上させた。</p>
</div>
<!-- mock+text -->
<div class="flex w-full h-screen border-b-[1px] border-white/20">
<!-- before -->
<div class="w-1/2 h-full flex flex-col py-32 justify-center items-center">
<!-- before_mock -->
<div class="bg-hp_before2 bg-contain bg-no-repeat bg-center w-[80%] h-full"></div>
<!-- before_text -->
<div class="w-full text-center pt-8 text-white/70 text-sm">*before* <br>情報の優先順位がない。<br>CTAボタンの位置が遠い。 </div>
</div>
<!-- after -->
<div class="w-1/2 h-full flex flex-col py-32 justify-center items-center">
<!-- after_mock -->
<div class="bg-hp_after2 bg-contain bg-center bg-no-repeat w-[80%] h-full"></div>
<!-- after_text -->
<div class="w-full text-center pt-8 text-white text-sm">*after* <br>"音声通話"から"今すぐ通話"に、CTAのテキストを変えた。<br>同じタグも複数提示することによって注意喚起。</div>
</div>
</div>
<!-- mock+text2 -->
<div class="flex w-full h-screen border-b-[1px] border-white/20">
<!-- before -->
<div class="w-1/2 h-full flex flex-col py-32 justify-center items-center">
<!-- before_mock -->
<div class="bg-set_before bg-contain bg-no-repeat bg-center w-[80%] h-full"></div>
<!-- before_text -->
<div class="w-full text-center pt-8 text-white/70 text-sm">*before* <br>サイドバーのような仕込みで操作には違和感があった。 <br>全てのコンテンツを見ることができなかった。 </div>
</div>
<!-- after -->
<div class="w-1/2 h-full flex flex-col py-32 justify-center items-center">
<!-- after_mock -->
<div class="bg-set_after bg-contain bg-center bg-no-repeat w-[80%] h-full"></div>
<!-- after_text -->
<div class="w-full text-center pt-8 text-white text-sm">*after* <br>構造はページングに替えた。<br>
階層的に見やすくなり、ユーザーの操作困難を招くこともなくなる。</div>
</div>
</div>
<!-- mock+text3 -->
<div class="flex w-full h-screen border-b-[1px] border-white/20">
<!-- before -->
<div class="w-1/2 h-full flex flex-col py-32 justify-center items-center">
<!-- before_mock -->
<div class="bg-camera_set_before bg-contain bg-no-repeat bg-center w-[80%] h-full"></div>
<!-- before_text -->
<div class="w-full text-center pt-8 text-white/70 text-sm">*before* <br>ロジックが整理されていななった。 </div>
</div>
<!-- after -->
<div class="w-1/2 h-auto flex flex-col py-32 justify-center items-center">
<!-- after_mock -->
<div class="bg-camera_set_after bg-contain bg-center bg-no-repeat w-[80%] h-full"></div>
<!-- after_text -->
<div class="w-full text-center pt-8 text-white text-sm">*after* <br>設定シーンを整理しながら2つのパタンまで収縮した。
</div>
</div>
</div>
<!-- animation -->
<div class="flex justify-between w-full h-screen pb-6 pt-20">
<div
class="rounded-2xl px-8 py-8 justify-center h-full w-[40%] flex items-center"
>
<video class="max-h-full w-auto" loop muted autoplay>
<source src="./video/calling.mp4" type="video/mp4" />
</video>
</div>
<div
class="rounded-2xl px-8 py-8 justify-center flex items-center h-full w-[40%]"
>
<video class="max-h-full w-auto" loop muted autoplay>
<source src="./video/cameraset.mp4" type="video/mp4" />
</video>
</div>
</div>
</div>
</section>
<!-- 登録 -->
<section class=" h-auto w-auto mx-[4%]">
<div class="w-full h-auto px-[18%] pt-28 pb-28 flex flex-col ">
<!-- title -->
<div class="w-[40%] h-auto text-4xl tracking-wide">登録フローの改善
</div>
<!-- solution_title1 -->
<div class="w-auto h-auto pt-20 flex flex-col space-y-2">
<p class="text-2xl tracking-wide">🟥heatmapによる引き算</p>
<p class="text-base text-white/70">不要な見出しや説明文を削除することで、ユーザーの注意がより集中し、結果として登録率の向上が見られました。視覚的要素を減らすことで認知負荷が軽減され、ユーザーがタスクに集中しやすくなリました。</p>
</div>
<!-- mock+text -->
<div class="flex w-full h-screen border-b-[1px] border-white/20">
<!-- before -->
<div class="w-1/2 h-full flex flex-col py-32 justify-center items-center">
<!-- before_mock -->
<div class="bg-log_before bg-contain bg-no-repeat bg-center w-[60%] h-full"></div>
<!-- before_text -->
<div class="w-full text-center pt-8 text-white/70 text-sm">*before* </div>
</div>
<!-- after -->
<div class="w-1/2 h-full flex flex-col py-32 justify-center items-center">
<!-- after_mock -->
<div class="bg-log_after bg-contain bg-center bg-no-repeat w-[60%] h-full"></div>
<!-- after_text -->
<div class="w-full text-center pt-8 text-white text-sm">*after*</div>
</div>
</div>
</div>
</section>
</body>
<script src="./loading.js"></script>
<script>
function backtoHome() {
window.location.href = "./index.html";
}
</script>
</html>