Portfolio Site First View
完成イメージ
ダークバージョン

ライトバージョン

画像処理(各自用意)サイズ:500/600px程度
※色調補正(白黒反転、ポスタリゼーション等)
※png画像で背景透明
※ダミー、イラスト等でも可
サンプルテキスト
Portfolio Site
HOME
PROFILE
WORKS
BLOG
CONTACT
Frontend Engineer / Web Designer / Web Director / etc.
Your Name
※自己アピール文(自分に合うように後でアレンジして下さい。)
私はデザイナーとして、美と機能を調和させ、革新的なアイデアを視覚的に魅力的に具現化することに情熱を注いでいます。
デザインは私の生きる喜びであり、挑戦を楽しみ、成果に誇りを持っています。クライアントのビジョンを実現し、共に成功を築くために、常に新しいアイデアを追求し、創造力を発揮します。
sns icon(font-awsome)
face book
X
Line
Instagram
Profile
Works
下向き三角(font-awsome)
Copyright © 2024 All rights reserved.
html(10/10)
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
|
<!-- Header --> <header> <h1>Portfolio Site</h1> <nav class="pcnav"> <ul> <li><a href="#">HOME</a></li> <li><a href="#">PROFILE</a></li> <li><a href="#">WORKS</a></li> <li><a href="#">BLOG</a></li> <li><a href="#">CONTACT</a></li> </ul> </nav> </header> <!-- Main Contents --> <main> <div class="container"> <!-- 自己アピール --> <section class="intro"> <h2>Front-end Engineer <span>Toshihiro YAMANO</span> </h2> <p>フロントエンジニアとして、ユーザー体験に情熱を注ぎ、魅力的なウェブアプリケーションを最新テクノロジーと最高の実践で開発します。</p> <p>ユーザーとクライアントのニーズを満たすために、クロスプラットフォーム対応とパフォーマンス最適化を重視し、協力と成長を大切にし、ビジョンの実現に貢献します。</p> </section> <!-- SNS Link --> <aside class="sns"> <ul> <li><a href="#"><i class="fa-brands fa-square-facebook"></i></a></li> <li><a href="#"><i class="fa-brands fa-x-twitter"></i></a></li> <li><a href="#"><i class="fa-brands fa-line"></i></a></li> <li><a href="#"><i class="fa-brands fa-square-instagram"></i></a></li> </ul> </aside> <!-- コンテンツへのリンク --> <ul class="link"> <li><a href="#">プロフィール</a></li> <li><a href="#">制作データ</a></li> </ul> <!-- Font-awsome --> <a href="#" class="link-btm"> <i class="fa-solid fa-caret-down"></i> </a> </div> </main> <!-- Footer --> <footer> <p><small>Copyright © 2024 All rights reserved.</small></p> </footer> |
Box構造

指定校

Hover設定

css(10/15)
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
|
@charset "utf-8"; /* Reset */ html{ color-scheme: dark; } *{ margin:0; padding: 0; } body{ line-height: 1; font-family: sans-serif; } ul{ list-style: none; } a{ text-decoration: none; color: inherit; display: block; } /* Header */ header{ padding: 50px 50px 100px; display: flex; justify-content: space-between; align-items: flex-end; } h1{ font-size: 3em; font-family:'Ruthie', cursive; animation: title 5s infinite; outline: 2px solid #ff0; } @keyframes title{ to{rotate: y 1turn;} } /* Pc navigation */ .pcnav ul{ display: flex; gap: 20px; } .pcnav a{ color: #999; transition:200ms; } .pcnav a:hover{ color: #fff; } .pcnav a::after{ content: ""; display: block; height: 3px; background: #fff; margin-top: 2px; scale:0 1; transition: 200ms; } .pcnav a:hover::after{ scale: 1; } /* Sp parts */ .btn, .spnav{ display: none; } /* Main Contents */ .container{ max-width:1200px; height: calc(100vh - 198px); height: calc(100dvh - 198px); margin-inline:auto; padding-inline:10px; background: url(../img/self2.png) no-repeat right top/35% auto; } /* 自己アピール/SNS */ .intro,.sns{ width:60%; } .intro h2{ /* outline: 1px solid #ff0; */ font-family:'Ruthie', cursive; font-size: 5em; font-weight: bold; text-align: center; background: linear-gradient( #fff 10%, #555 45%, #fff 46%, #555); height: 1.2em; background-clip: text; color: transparent; } .intro h2 span{ display: block; font-family: san-serif; font-weight: normal; font-size: 16px; margin-top: 1em; color: #fff; } .intro p{ line-height: 1.4; font-size: 1.2em; } .intro p:nth-of-type(1){ margin-block:3em 1.5em; } /* SNS icons */ .sns{ margin-block: 2.5em; } .sns ul{ display: flex; justify-content: end; gap: 1.2em; } .sns li{ font-size:50px; } .sns a{ color: #777; transition: 300ms; } .sns a:hover{ color: #fff; scale: 1.3; } /* プロフィール、データリンク */ .link{ display: flex; gap:1em; } .link li{ border:1px solid #fff; width: 150px; line-height: 50px; border-radius: 5px; text-align: center; position: relative; } .link a::before{ content: ""; display: block; background: #fff; height:50px; width:100%; position: absolute; transition: 200ms; z-index: -1; scale: 0 1; transform-origin: left; } .link a:hover{ color: #000; } .link a:hover::before{ scale:1; } /* スクロールリンク */ .link-btm i{ color: #777; font-size: 5em; width: fit-content; position: absolute; margin: auto; left: 0; right: 0; bottom:50px; transition:200ms; animation: updown 2s infinite; } .link-btm:hover i{ color: #fff; } @keyframes updown { 0%, 20%, 50%, 80%, 100% { translate:0 0; } 40% { translate:0 -30px; } 60% { translate:0 -15px; } } footer{ text-align: center; padding-block: 30px; } |
Responsive
