-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
623 lines (571 loc) · 17 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>らーゆ</title>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.css">
<style>
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
width:94%;
margin:0 auto;
}
.slider img {
width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
height:auto;
}
.slider .slick-slide {
transform: scale(0.8);/*左右の画像のサイズを80%に*/
transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
opacity: 0.5;/*透過50%*/
}
.glass {
width: 100%;
max-width: 600px;
padding: 30px;
background-color: rgba(255, 255, 255, 0.1); /* 背景色 */
border: 1px solid rgba(255, 255, 255, 0.4); /* ボーダー */
border-right-color: rgba(255, 255, 255, 0.2);
border-bottom-color: rgba(255, 255, 255, 0.2);
border-radius: 15px;
-webkit-backdrop-filter: blur(20px); /* ぼかしエフェクト */
backdrop-filter: blur(20px);
box-shadow: 0 5px 20px rgba(255, 152, 79, 0.5); /* 薄い影 */
}
.slider .slick-slide.slick-center{
transform: scale(1);/*中央の画像のサイズだけ等倍に*/
opacity: 1;/*透過なし*/
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
position: absolute;/*絶対配置にする*/
top: 42%;
cursor: pointer;/*マウスカーソルを指マークに*/
outline: none;/*クリックをしたら出てくる枠線を消す*/
border-top: 2px solid #666;/*矢印の色*/
border-right: 2px solid #666;/*矢印の色*/
height: 15px;
width: 15px;
}
.slick-prev {/*戻る矢印の位置と形状*/
left: -1.5%;
transform: rotate(-135deg);
}
.slick-next {/*次へ矢印の位置と形状*/
right: -1.5%;
transform: rotate(45deg);
}
/*ドットナビゲーションの設定*/
.slick-dots {
text-align:center;
margin:20px 0 0 0;
}
.slick-dots li {
display:inline-block;
margin:0 5px;
}
.slick-dots button {
color: transparent;
outline: none;
width:8px;/*ドットボタンのサイズ*/
height:8px;/*ドットボタンのサイズ*/
display:block;
border-radius:50%;
background:#ccc;/*ドットボタンの色*/
}
.slick-dots .slick-active button{
background:#333;/*ドットボタンの現在地表示の色*/
}
.inner{
width: 80%;
margin: 0 auto;
max-width: 500px;
}
#wrapper{
/*描画されるテキストを中央寄せにする*/
display:flex;
justify-content: center;
align-items: center;
}
#splash {
/*fixedで全面に固定*/
position: fixed;
width: 100%;
height: 100%;
z-index: 999;
text-align:center;
color:#fff;
}
/* Loading画像中央配置 */
#splash_text {
position: absolute;
top: 50%;
left: 50%;
z-index: 999;
transform: translate(-50%, -50%);
color: #fff;
width: 100%;
}
/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
height: 2px;
}
/*割れる画面のアニメーション*/
.loader_cover {
width: 100%;
height: 50%;
background-color: #333;
transition: all .2s cubic-bezier(.04, .435, .315, .9);
transform: scaleY(1);
}
/*上の画面*/
.loader_cover-up {
transform-origin: center top;
}
/*下の画面*/
.loader_cover-down {
position: absolute;
bottom: 0;
transform-origin: center bottom;
}
/*クラス名がついたらY軸方向に0*/
.coveranime {
transform: scaleY(0);
}
body {
width: 100%;
height: 100vh;
background:linear-gradient(45deg, #000000,#c0c0c0,#696969);/*グラデーションを定義*/
background-size: 200% 200%;/*サイズを大きくひきのばす*/
animation: bggradient 20s ease infinite;
}
@keyframes bggradient{
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
body {
font-family: "fot-chiaro-std", sans-serif;
font-weight: 700;
font-style: normal;bu
text-align: center;
font-size: 20px
}
body {
text-align: center;
color: white;
}
input[type="submit"],
input[type="button"] {
border-radius: 0;
-webkit-box-sizing: content-box;
-webkit-appearance: button;
appearance: button;
border: none;
box-sizing: border-box;
cursor: pointer;
font-family: "fot-chiaro-std", sans-serif;
font-weight: 700;
font-style: normal;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
outline-offset: -2px;
}
body {
background-color: #f5f5f5;
}
button {
background-color: #555;
border: none;
color: #fff;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
cursor: pointer;
transition: all 0.3s ease-in-out;
font-family: "fot-chiaro-std", sans-serif;
font-weight: 700;
font-style: normal;
}
/* ボタンにマウスが乗った時のアニメーション */
button:hover {
background-color: #f44336;
color: white;
transform: scale(1.1);
}
/* ヘッダーのスタイル */
header {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
justify-content: space-between;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 9999;
backdrop-filter: blur(500px);
backdrop-filter: blur(10px);
opacity: 0.8;
}
header {
backdrop-filter: blur(12px);
}
/* ヘッダー内のテキストスタイル */
header h1 {
margin: 0;
justify-content: space-between;
z-index: 9999; /* 他の要素よりも手前に表示するための値 */
}
#menu {
display: none;
justify-content: space-between;
z-index: 9999; /* 他の要素よりも手前に表示するための値 */
}
@media only screen and (min-width: 76800px) {
/* ウィンドウの幅が768px以上の場合に表示する */
#menu {
display: block;
}
}
/* ナビゲーションバーのスタイル */
nav {
background-color: #ddd;
padding: 10px;
justify-content: space-between;
}
/* ナビゲーションリンクのスタイル */
nav a {
color: #333;
text-decoration: none;
font-weight: bold;
margin-right: 10px;
justify-content: space-between;
display: none;
}
}
.menu {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #fff;
display: none;
z-index: 9999;
backdrop-filter: saturate(180%) blur(20px);
background-color: rgba(255,255,255,0.72);
-webkit-backdrop-filter: blur(20px); /* ぼかしエフェクト */
backdrop-filter: blur(20px);
box-shadow: 0 5px 20px rgba(255, 152, 79, 0.5); /* 薄い影 */
background-color: rgba(255, 255, 255, 0.1); /* 背景色 */
}
#menu ul {
list-style: none;
margin: 0;
padding: 0;
}
#menu ul li {
display: block;
}
#menu ul li a {
display: block;
padding: 10px;
text-decoration: none;
color: #000;
background-color: #fff;
}
#menu ul li a:hover {
background-color: #f2f2f2;
/* メインコンテンツのスタイル */
main {
margin: 20px;
display: flex;
flex-direction: column; /* 縦並びにする */
align-items: center; /* 中央揃え */
width: 80%;
/* 左右の余白を自動的に調整 */
margin: 0 auto;
backdrop-filter: saturate(180%) blur(20px);
background-color: rgba(255,255,255,0.72);
-webkit-backdrop-filter: blur(20px); /* ぼかしエフェクト */
backdrop-filter: blur(20px);
box-shadow: 0 5px 20px rgba(255, 152, 79, 0.5); /* 薄い影 */
background-color: rgba(255, 255, 255, 0.1); /* 背景色 */
}
/* プロフィールのスタイル */
.profile {
width: 30%;
width: 80%;
/* 左右の余白を自動的に調整 */
margin: 0 auto;
}
.profile img {
width: 100%;
height: auto;
width: 80%;
/* 左右の余白を自動的に調整 */
margin: 0 auto;
}
.profile h2 {
margin-top: 0;
width: 80%;
/* 左右の余白を自動的に調整 */
margin: 0 auto;
}
/* 自己紹介のスタイル */
.intro {
width: 65%;
text-align: justify;
font-size: 20px;
line-height: 1.5;
width: 80%;
/* 左右の余白を自動的に調整 */
margin: 0 auto;
}
/* フッターのスタイル */
footer {
background-color: #333;
color: white;
padding: 20px;
text-align: center;
}
/* グラデーションを背景に追加 */
body {
background: linear-gradient(to bottom, #fff, #f2f2f2);
}
/* ボタンのスタイル */
button {
background-color: #555;
border: none;
color: #fff;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
cursor: pointer;
transition: all 0.3s ease-in-out;
font-family: "fot-chiaro-std", sans-serif;
font-weight: 700;
font-style: normal;
}
@keyframes fadeIn {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.content {
animation: fadeIn 1s ease-in-out;
animation-fill-mode: both;
}
/* ボタンにマウスが乗った時のアニメーション */
button:hover {
background-color: #f44336;
color: white;
transform: scale(1.1);
}
</style>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" type="text/css" href="css/5-2.css">
</head>
<body>
<div id="splash">
<div id="splash_text"></div>
<div class="loader_cover loader_cover-up"></div><!--上に上がるエリア-->
<div class="loader_cover loader_cover-down"></div><!--下に下がるエリア-->
<!--/splash--></div>
<div id="container">
<!--/container--></div>
<header>
<h1>らーゆの紹介</h1>
<button id="menu-button">Menu</button>
<nav id="menu">
<ul>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<h1> </h1>
<h1> </h1>
<main>
<section id="about" style="animation-delay: 0.2s;">
<ul class="slider">
<li><img src="https://nitter.fdn.fr/pic/pbs.twimg.com%2Fprofile_images%2F1605120889866944512%2FxZOiXIzn.jpg" alt="らーゆさん" width="60%" height="60%"></li>
<li><img src="https://nitter.fdn.fr/pic/orig/media%2FFkkW3X4VsAIxcRR.jpg" alt="マルツ電波にて" width="60%" height="60%"></li>
<li><img src="https://nitter.fdn.fr/pic/orig/media%2FFvmwqOeaMAABp5e.jpg" alt="変人" width="60%" height="60%"></li>
<li><img src="https://nitter.fdn.fr/pic/orig/media%2FFvPXFVbaYAcKlOd.jpg" alt="歯に優しいケーキ" width="60%" height="60%"></li>
<li><img src="https://nitter.fdn.fr/pic/orig/media%2FFt-1IFJaQAAp7SO.jpg" alt="オケ" width="60%" height="60%"></li>
<!--/slider--></ul>
<h2>About Me</h2>
<div class="content" style="animation-delay: 0.2s;">
<img src="https://nitter.fdn.fr/pic/pbs.twimg.com%2Fprofile_images%2F1605120889866944512%2FxZOiXIzn.jpg" alt="raayucorp">
<p>らーゆです。Twitterで普通に生きています。</p>
<div class="glass">
</div>
</section>
<section id="skills">
<h2>Skills</h2>
<div class="content" style="animation-delay: 0.4s;">
<ul>
<li>PCいじり</li>
<li>ilustrator</li>
<li>Twitter(?)</li>
<li>Photoshop</li>
</ul>
</div>
</section>
<section id="contact" >
<h2>Contact</h2>
<div class="content" style="animation-delay: 0.6s;">
<form>
<div>
<label for="name">名前</label>
<input type="text" id="name" name="name">
</div>
<div>
<label for="email">メールアドレス</label>
<input type="email" id="email" name="email">
</div>
<div>
<label for="message">メッセージ</label>
<textarea id="message" name="message"></textarea>
</div>
<button type="submit">送信</button>
</form>
</div>
</section>
</main>
<footer>
<p>© 2023 Raayu.All rights reserved.</p>
</footer>
<script>
// 固定ヘッダー・フッターを表示する
const header = document.querySelector('header');
const footer = document.querySelector('footer');
window.addEventListener('scroll', () => {
if (window.scrollY > 50) {
header.classList.add('fixed');
footer.classList.add('fixed');
} else {
header.classList.remove('fixed');
footer.classList.remove('fixed');
}
});
// ボタンにホバー時のスタイルを追加する
const buttons = document.querySelectorAll('button');
buttons.forEach(button => {
button.addEventListener('mouseover', () => {
button.classList.add('hover');
});
button.addEventListener('mouseout', () => {
button.classList.remove('hover');
});
});
const menuButton = document.querySelector('#menu-button');
const menu = document.querySelector('#menu');
menuButton.addEventListener('click', function() {
if (menu.style.display === 'none') {
menu.style.display = 'block';
} else {
menu.style.display = 'none';
}
});
</script>
<script>
(function(d) {
var config = {
kitId: 'ztc8rtt',
scriptTimeout: 3000,
async: true
},
h=d.documentElement,t=setTimeout(function(){h.className=h.className.replace(/\bwf-loading\b/g,"")+" wf-inactive";},config.scriptTimeout),tk=d.createElement("script"),f=false,s=d.getElementsByTagName("script")[0],a;h.className+=" wf-loading";tk.src='https://use.typekit.net/'+config.kitId+'.js';tk.async=true;tk.onload=tk.onreadystatechange=function(){a=this.readyState;if(f||a&&a!="complete"&&a!="loaded")return;f=true;clearTimeout(t);try{Typekit.load(config)}catch(e){}};s.parentNode.insertBefore(tk,s)
})(document);
</script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://rawgit.com/kimmobrunfeldt/progressbar.js/master/dist/progressbar.min.js"></script>
<script>
//テキストのカウントアップ+バーの設定
var bar = new ProgressBar.Line(splash_text, {//id名を指定
easing: 'easeInOut',//アニメーション効果linear、easeIn、easeOut、easeInOutが指定可能
duration: 1000,//時間指定(1000=1秒)
strokeWidth: 0.2,//進捗ゲージの太さ
color: '#555',//進捗ゲージのカラー
trailWidth: 0.2,//ゲージベースの線の太さ
trailColor: '#bbb',//ゲージベースの線のカラー
text: {//テキストの形状を直接指定
style: {//天地中央に配置
position: 'absolute',
left: '50%',
top: '50%',
padding: '0',
margin: '-30px 0 0 0',//バーより上に配置
transform:'translate(-50%,-50%)',
'font-size':'1rem',
color: '#fff',
},
autoStyleContainer: false //自動付与のスタイルを切る
},
step: function(state, bar) {
bar.setText(Math.round(bar.value() * 100) + ' %'); //テキストの数値
}
});
//アニメーションスタート
bar.animate(1.0, function () {//バーを描画する割合を指定します 1.0 なら100%まで描画します
$("#splash_text").fadeOut(10);//フェイドアウトでローディングテキストを削除
$(".loader_cover-up").addClass("coveranime");//カバーが上に上がるクラス追加
$(".loader_cover-down").addClass("coveranime");//カバーが下に下がるクラス追加
$("#splash").fadeOut();//#splashエリアをフェードアウト
});
</script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="js/particleText.js"></script><!--https://github.com/55Kaerukun/particleText.jsからダウンロードして使用-->
<script>
$("#particle").particleText({
text: "Raayu<br>@raayucorp<br>らーゆのウェブサイト", // 表示させたいテキスト。改行の場合は<br>追加
colors:["#fff","#ccc", "#ddd"], // パーティクルの色を複数指定可能
speed: "slow", // slow, middle, high の3つから粒子が集まる速さを選択
});
</script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/slick/slick.min.js"></script>
<script>
$('.slider').slick({
autoplay: true,//自動的に動き出すか。初期値はfalse。
infinite: true,//スライドをループさせるかどうか。初期値はtrue。
speed: 500,//スライドのスピード。初期値は300。
slidesToShow: 3,//スライドを画面に3枚見せる
slidesToScroll: 1,//1回のスクロールで1枚の写真を移動して見せる
prevArrow: '<div class="slick-prev"></div>',//矢印部分PreviewのHTMLを変更
nextArrow: '<div class="slick-next"></div>',//矢印部分NextのHTMLを変更
centerMode: true,//要素を中央ぞろえにする
variableWidth: true,//幅の違う画像の高さを揃えて表示
dots: true,//下部ドットナビゲーションの表示
});
</script>
</body>
</html>