#はてなブログ 備忘録
カスタマイズで使用したコードなどを備忘録代わりに紹介していきます。
詳細な説明は省略していますので、それぞれの参照元サイトにてご確認ください。
使用にあたっては自己責任にてお願いいたします。
使用デザインテーマ
Silence
レスポンシブに対応したシンプルなデザインテーマ
シンプルが故にカスタマイズの自由度が高いと考えてこのテーマに決定
設定→詳細設定
FontAwesomeデータ読み込み【HTML】
特殊なアイコンデータなどを表示させるための準備
「<head>要素にメタデータを追加」欄にコピペ
- <!--FontAwesome読み込み-->
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
jQueryデータ読み込み【HTML】
アコーディオンメニューなど動きを持たせるための準備
「<head>要素にメタデータを追加」欄にコピペ
- <!--jQueryデータ読み込み-->
- <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
デザイン→ →サイドバー
プロフィール欄を既存のものからカスタマイズ【HTML】
①既存のプロフィールを削除
② HTMLを選択し、カスタマイズ用HTMLをコピペ
こちらのサイトを活用させていただきました!
*「プロフィールデザイン3」+フォローボタン追加
リンク欄を既存のものからカスタマイズ【HTML】
リンクボタンを追加するためにHTMLで作成
①既存のリンクを削除
② HTMLを選択し、カスタマイズ用HTMLをコピペ
例:LINE友だち追加ボタン設置
- <p>
- <strong><font color=”#00B900”>\LINE公式アカウント登録/</font></strong><br>
- <a href="リンク貼り付け" target="_blank"><img src="https://scdn.line-apps.com/n/line_add_friends/btn/ja.png" alt="友だち追加" width="120" border="0"></a>
- </p>
※[リンク貼り付け]にLINE公式アカウント友だち追加のリンク先URLを入力
デザイン→ → デザインCSS
記事途中のキーワード下線を消す【CSS】
/* キーワード下線を消す */
a.keyword {
border: 0 !important;
text-decoration: none !important;
pointer-events: none !important;
cursor: default;
color: #5A5A5A;
}
記事下の名前(ID)を消す【CSS】
/*記事下 名前のみ 削除*/
span.author.vcard {
display: none;
}
ページ内リンクのスクロールをスムーズにする【CSS】
/* スムーズスクロール*/
html {
scroll-behavior: smooth;
}
記事一覧選択時の動作追加【CSS】
/* 記事一覧をふわっとさせる*/
.page-archive .archive-entry {
transition: .3s; /*変化するまでの時間*/
}
.page-archive .archive-entry:hover {
transform: translateY(-4px); /*上に4px移動*/
box-shadow: 0 6px 10px rgba(0,0,0,.2); /*影の距離 ぼかし幅 色*/
}
タグ表示のスマート化【CSS】
/* 記事内タグのアイコン変更*/
.entry-tag .entry-tag-icon {
display: none;
}
.entry-tag-link::before {
content: "\f04a";
font-family: 'blogicon';
}/* 記事一覧画面からタグ消去*/
.archive-entry-tags-wrapper {
display: none;
}
上に戻るボタンを追加【CSS】
/*上に戻るボタン*/
#page-top {
display:none;
position:fixed;
right:10px;
bottom:20px;
margin: 0;
padding: 0;
text-align:center;
}
#move-page-top{
color:rgba(128, 128, 128, 0.3);
text-decoration:none;
display:block;
cursor:pointer;
}
#move-page-top:hover{
color:rgba(128,128,128, 1);
}
@media only screen and (min-width: 400px){
#page-top{
right:50%;
margin-right: -350px;
}
}
目次をルーズリーフ風にする【CSS】
こちらのサイトを活用させていただきました!
*「ルーズリーフ風の目次」+リストマーカーなし
/* 目次をルーズリーフに*/
.entry-content .table-of-contents {
display: inline-block;
padding: 0 1em 1em;
background: #ffffff14;
border-top: 0;
border-right: 0;
border-bottom: 0;
border-left: 8px dotted #e1e1e2;
box-shadow: 0px 0px 0 7px #ffffff, 1px 0px 0 7px #959595d4, 2px 0px 0 7px #fff, 3px 0px 0 7px #898989de,
4px 0px 0 7px #fff, 5px 0px 0 7px #858585de, 4px 0px 10px 9px #b8b8b896;
}
.entry-content .table-of-contents::before {
content: "CONTENTS";
display: block;
position: static;
margin: .3em 0 .4em;
padding: 0;
border-bottom: 2px solid #ddd;
font-size: 1rem;
font-weight: bold;
text-align: start;
}
.entry-content .table-of-contents li {
list-style-type: none;
margin: 0 0 0 1em;
font-size: 1.1em;
font-weight: bold;
}
.entry-content .table-of-contents li ul {
margin: 0 0 1em .5em;
padding: 0;
}
.entry-content .table-of-contents li ul li {
list-style-type: none;
color: #8d8d8d;
font-size: .9em;
font-weight: normal;
}
.entry-content .table-of-contents a {
color: #5a5a5a;
text-decoration: none;
position: relative;
display: block;
line-height: 2em;
background-image: linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #fff 0%, #fff 100%), linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 95%, #666 100%);
background-size: 8px 100%,100% 2em;
}
記事内
吹き出しをつける(会話風)
こちらのサイトを参照しました。
いろんなテクニックが紹介されていて、とても重宝します!
*吹き出し左側
- <div style="width: 100%;
- height: auto;
- margin-bottom: 20px;
- display: table;">
- <div style=" text-align: center;
- display: table-cell;
- width: 80px;
- vertical-align: middle;">
- <span><img src="画像のURL" style=" border-radius: 50%;
- border: 1px solid #ccc;
- margin-bottom: 5px;"></span>
- <div style=" color: #616161;
- font-size: 70%;
- line-height: 1.5;
- max-width: 80px;">画像下の名前</div></div>
- <div style="display: table-cell;
- margin: 0;
- vertical-align: middle;
- text-align: left;"><div style="font-size: 15px;
- line-height: 26px; display: inline-block;
- padding: 15px 20px;
- margin-left: 20px;
- border-radius: 7px;
- position: relative;
- background-color: #f5f5f5;"><!--吹き出し内背景色-->会話<span style=" position: absolute;
- top: 50%;
- left: -10px;
- margin-top: -10px;
- display: block;
- width: 0px;
- height: 0px;
- border-style: solid;
- border-width: 10px 10px 10px 0;
- border-color: transparent #f5f5f5 transparent transparent;"><!--吹き出し内背景色--> </span></div></div>
- </div>
- </div>
- <p></p>
*吹き出し右側
- <div style="width: 100%;
- height: auto;
- margin-bottom: 20px;
- display: table;">
- <div style="display: table-cell;
- margin: 0;
- vertical-align: middle;
- text-align: right;">
- <div style="font-size: 15px;
- line-height: 26px;
- display: inline-block;
- padding: 15px 20px;
- margin-right: 20px;
- border-width: 1px;
- border-style: solid;
- border-color: transparent;
- border-radius: 7px;
- position: relative;
- text-align: left;
- background-color: #fafad2;"><!--吹き出し内背景色-->
- 会話<span style=" position: absolute;
- top: 50%;
- right: -10px;
- margin-top: -10px;
- display: block;
- width: 0;
- height: 0;
- border-style: solid;
- border-width: 10px 0 10px 10px;
- border-color: transparent transparent transparent #fafad2;"><!--吹き出し内背景色--> </span></div>
- </div>
- <div style=" text-align: center;
- display: table-cell;
- width: 80px;
- vertical-align: middle;">
- <span><img src="画像のURL" style="border-radius: 50%;
- border: 1px solid #ccc;
- margin-bottom: 5px;"></span>
- <!--ここから--><div style="color: #616161;
- font-size: 70%;
- max-width: 100%;
- height: auto;
- vertical-align: middle;
- line-height: 1.5;
- max-width: 80px;">画像下の名前</div><!--ここまで--></div>
- </div>
- <p></p>
囲み枠をつける(テープ風タイトル)
- <div style=" position: relative; padding: 1em 1em .5em; margin: 2em 0; border: solid 3px #f9f375; border-radius: 8px; background: #ffffff;">
- <span style="position: absolute; display: inline-block; top: -16px; left: 13px; padding: 0 9px; height: 25px; line-height: 25px; font-size: 17px; background: repeating-linear-gradient(-45deg, #fff, #fff 3px,#f9f375 3px, #f9f375 7px); color: #555555; font-weight: bold; border-right: dotted 2px #f9f375; border-left: dotted 2px #f9f375; transform: rotate(-2deg);"> タイトル</span>
- <p style=" margin: 0; padding: 0;">内容</p>
- </div><p></p>