こんにちは。KOUKIです。
本記事は、Udemyの「50 Projects In 50 Days – HTML, CSS & JavaScript」で学習したことを載せています。
<目次>
実装するもの
以前、GitHUB REST APIを使ってユーザー検索アプリを作成しましたが、今回はそのスタイリングになります。
demoは「こちら」で確認できます。
ワークスペース
必要なファイルは、以下の通りです。
1 2 3 4 5 6 |
$ tree . ├── index.html ├── script.js └── style.css |
JavaScript版
HTML & JavaScript
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="style.css" /> <title>Github Profiles</title> </head> <body> <form class="user-form" id="form"> <input type="text" id="search" placeholder="Search a Github User"> </form> <main id="main"></main> <script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.21.0/axios.min.js" integrity="sha512-DZqqY3PiOvTP9HkjIWgjO6ouCbq+dxqWoJZ/Q+zPYNHmlnI2dQnbJ5bxAHpAMw+LXRm4D72EIRXzvcHQtE8/VQ==" crossorigin="anonymous"></script> <script src="script.js"></script> </body> </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 |
// 要素を取得 const main = document.getElementById('main') const form = document.getElementById('form') const search = document.getElementById('search') // エンドポイント const APIURL = 'https://api.github.com/users/' async function getUser(username) { // axiosでリクエストを送る try { const { data } = await axios(APIURL + username) createUserCard(data) getRepos(username) } catch(err) { if(err.response.status == 404) { createErrorCard('No profile with this username') } } } // レポジトリの情報を取得 async function getRepos(username) { try { const { data } = await axios(APIURL + username + '/repos?sort=created') addReposToCard(data) } catch(err) { createErrorCard('Problem fetching repos') } } // プロフィールカード作成 function createUserCard(user) { console.log(user) const cardHTML = ` <div class="card"> <div> <img src="${user.avatar_url}" alt="${user.name}" class="avatar"> </div> <div class="user-info"> <h2>${user.name}</h2> <p>${user.bio}</p> <ul> <li>${user.followers} <strong>Followers</strong></li> <li>${user.following} <strong>Following</strong></li> <li>${user.public_repos} <strong>Repos</strong></li> </ul> <div id="repos"></div> </div> </div> ` main.innerHTML = cardHTML } // エラー発生時のカード function createErrorCard(msg) { const cardHTML = ` <div class="card"> <h1>${msg}</h1> </div> ` main.innerHTML = cardHTML } // レポジトリをカードに追加 function addReposToCard(repos) { const reposEl = document.getElementById('repos') repos .slice(0, 5) .forEach(repo => { const repoEl = document.createElement('a') repoEl.classList.add('repo') repoEl.href = repo.html_url repoEl.target = '_blank' repoEl.innerText = repo.name reposEl.appendChild(repoEl) }) } // submitイベントの登録 form.addEventListener('submit', (e) => { // ページリダイレクトをキャンセル e.preventDefault() // 入力文字を取得 const user = search.value if(user) { // ユーザー情報取得 getUser(user) // 検索窓をクリア search.value = '' } }) |


スタイリング
これからCSSでスタイリングしていきます。bodyやuser-formは、HTML要素です。
全体の設定
1 2 3 4 5 6 7 |
/* フォント */ @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap"); * { /* paddingとborderをwidthとheightに含める */ box-sizing: border-box; } |
bodyの設定
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
body { background-color: #2a2a72; color: #fff; font-family: "Poppins", sans-serif; /* flexアイテムにする */ display: flex; /* flexアイテムを積み重ねるように配置 */ flex-direction: column; /* flex重点にアイテムを配置 */ align-items: center; /* flex横線中央にアイテムを配置 */ justify-content: center; height: 100vh; /* スクロールを非表示 */ overflow: hidden; margin: 0; } |

user-formの設定
1 2 3 4 |
.user-form { width: 100%; max-width: 700px; } |

user-form inputの設定
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
.user-form input { width: 100%; /* block要素にする */ display: block; background-color: #4c2885; /* 枠線を非表示 */ border: none; /* 角を丸く */ border-radius: 10px; color: #fff; padding: 1rem; margin-bottom: 2rem; font-family: inherit; font-size: 1rem; box-shadow: 0 5px 10px rgba(154, 160, 185, 0.05), 0 15px 40px rgba(0, 0, 0, 0.1); } |

その他ユーザー入力フォームの設定
1 2 3 4 5 6 7 8 |
.user-form input::placeholder { color: #bbb; } .user-form input:focus { /* 青線を非表示 */ outline: none; } |

cardの設定
1 2 3 4 5 6 7 8 9 10 |
.card { max-width: 800px; background-color: #4c2885; border-radius: 20px; box-shadow: 0 5px 10px rgba(154, 160, 185, 0.05), 0 15px 40px rgba(0, 0, 0, 0.1); display: flex; padding: 3rem; margin: 0 1.5rem; } |

avatarの設定
1 2 3 4 5 6 |
.avatar { border-radius: 50%; border: 10px solid #2a2a72; height: 150px; width: 150px; } |

user-infoの設定
1 2 3 4 |
.user-info { color: #eee; margin-left: 2rem; } |

user-info h2の設定
1 2 3 |
.user-info h2 { margin-top: 0; } |

user-info ulの設定
1 2 3 4 5 6 7 8 9 10 |
.user-info ul { list-style-type: none; display: flex; /* 各アイテムを均等に配置し 各アイテムの両側に半分の大きさの 間隔を置く */ justify-content: space-around; padding: 0; max-width: 400px; } |

user-info ul liの設定
1 2 3 4 |
.user-info ul li { display: flex; align-items: center; } |

user-info ul li strongの設定
1 2 3 4 |
.user-info ul li strong { font-size: 0.9rem; margin-left: 0.5rem; } |

repoの設定
1 2 3 4 5 6 7 8 9 10 |
.repo { text-decoration: none; color: #fff; background-color: #212a72; font-size: 0.7rem; padding: 0.25rem 0.5rem; margin-right: 0.5rem; margin-bottom: 0.5rem; display: inline-block; } |

メディアクエリの設定
1 2 3 4 5 6 7 8 9 10 |
/* ページ幅が500px未満 */ @media (max-width: 500px) { .card { flex-direction: column; align-items: center; } .user-form { max-width: 400px; } |

おわりに
UIのスタイリングができるとアプリケーション開発も楽しくなってきますよね。でも私の感覚だと、フロントエンドやバックエンドエンジニアでUIのスタイリングが得意な人は少ない気がします^^;
やっぱり、センスみたいなのが必要ですよね。
一つ一つのアプリケーションを丁寧に作成して、センスを磨いていきたいと思います。
それでは、また!
CSSまとめ
CSSソースコード
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 |
/* フォント */ @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap"); * { /* paddingとborderをwidthとheightに含める */ box-sizing: border-box; } body { background-color: #2a2a72; color: #fff; font-family: "Poppins", sans-serif; /* flexアイテムにする */ display: flex; /* flexアイテムを積み重ねるように配置 */ flex-direction: column; /* flex重点にアイテムを配置 */ align-items: center; /* flex横線中央にアイテムを配置 */ justify-content: center; height: 100vh; /* スクロールを非表示 */ overflow: hidden; margin: 0; } .user-form { width: 100%; max-width: 700px; } .user-form input { width: 100%; /* block要素にする */ display: block; background-color: #4c2885; /* 枠線を非表示 */ border: none; /* 角を丸く */ border-radius: 10px; color: #fff; padding: 1rem; margin-bottom: 2rem; font-family: inherit; font-size: 1rem; box-shadow: 0 5px 10px rgba(154, 160, 185, 0.05), 0 15px 40px rgba(0, 0, 0, 0.1); } .user-form input::placeholder { color: #bbb; } .user-form input:focus { /* 青線を非表示 */ outline: none; } .card { max-width: 800px; background-color: #4c2885; border-radius: 20px; box-shadow: 0 5px 10px rgba(154, 160, 185, 0.05), 0 15px 40px rgba(0, 0, 0, 0.1); display: flex; padding: 3rem; margin: 0 1.5rem; } .avatar { border-radius: 50%; border: 10px solid #2a2a72; height: 150px; width: 150px; } .user-info { color: #eee; margin-left: 2rem; } .user-info h2 { margin-top: 0; } .user-info ul { list-style-type: none; display: flex; /* 各アイテムを均等に配置し 各アイテムの両側に半分の大きさの 間隔を置く */ justify-content: space-around; padding: 0; max-width: 400px; } .user-info ul li { display: flex; align-items: center; } .user-info ul li strong { font-size: 0.9rem; margin-left: 0.5rem; } .repo { text-decoration: none; color: #fff; background-color: #212a72; font-size: 0.7rem; padding: 0.25rem 0.5rem; margin-right: 0.5rem; margin-bottom: 0.5rem; display: inline-block; } /* ページ幅が500px未満 */ @media (max-width: 500px) { .card { flex-direction: column; align-items: center; } .user-form { max-width: 400px; } } |
コメントを残す
コメントを投稿するにはログインしてください。