パーツ(会話の吹き出し、考え・思考中吹き出し)

パーツ(会話の吹き出し、考え・思考中吹き出し)

HTML特殊文字変換サイト・アイコン作成サイトの紹介

HTML用の記載をするときに、特殊文字を変換できるサイトです。

HTML特殊文字変換ツール


商用利用可能なアイコンを即刻ダウンロードできるアイコンサイトです。

アイコン素材ダウンロード
アイコン素材ダウンロード2

会話の吹き出しパーツ

★★★
左寄せパターンです。左寄せパターンです。左寄せパターンです。左寄せパターンです。左寄せパターンです。左寄せパターンです。


★★★
右寄せパターンです。


HTML

<!--吹き出しはじまり-->
<div class="fukidashi1">
<div class="icon">
<div class="wphg"><img src="画像のURL" alt="{AUTO}" /></div>
<div class="iconfont">★★★</div>
</div>
<div class="bubble">左寄せパターンです。左寄せパターンです。左寄せパターンです。左寄せパターンです。左寄せパターンです。左寄せパターンです。</div>
</div>
<!--吹き出し終わり-->




<!--吹き出しはじまり-->
<div class="fukidashi2">
<div class="icon">
<div class="wphg"><img src="画像のURL" alt="{AUTO}" /></div>
<div class="iconfont">★★★</div>
</div>
<div class="bubble">右寄せパターンです。</div>
</div>
<!--吹き出し終わり-->


CSS

/*吹き出し アイコン 左寄せ*/
.fukidashi1 {
width: 95%;
margin: 12px 14px;
overflow: hidden;
}


.fukidashi1 .icon {
float: left;
margin-right: -120px;
width: 120px;


}


.fukidashi1 .icon .wphg{
width: 120px;
height: 120px;
}


.fukidashi1 .icon img{
width: 100%;
height: auto;
border: solid 1px #b2d99a;
/*0%:四角 10%~:角丸 50%:円*/
border-radius: 50%;
}


.fukidashi1 .iconfont {
padding-top:7px;
font-size:10px;
text-align:center
}


.fukidashi1 .bubble {
display: inline-block;
position: relative;
margin: 25px 20px 0 135px;
padding: 13px;
border-radius: 25px;
background: #b2d99a;
max-width: 500px;
}


.fukidashi1 .bubble:after {
content: "";
display: inline-block;
position: absolute;
top: 13px;
left: -14px;
border-style: solid;
border-width: 0 24px 17px 0;
border-color: transparent #b2d99a;
}



/*吹き出し アイコン 右寄せ*/
.fukidashi2 {
width: 97%;
margin: 12px 14px ;
overflow: hidden;
display:flex;
justify-content: flex-start;
}


.fukidashi2{
justify-content:flex-end;
}


.fukidashi2 .icon {
display: inline-block;
order:2 !important;
margin-left: -120px;
margin-right: 100px;
width: 120px;
}


.fukidashi2 .icon img{
width: 120px;
height: 120px;
border: solid 1px #b2d99a;
/*0%:四角 10%~:角丸 50%:円*/
border-radius: 50%;
}


.fukidashi2 .icon .wphg{
width: 120px;
height: 120px;
}


.fukidashi2 .iconfont {
padding-top:7px;
font-size:10px;
text-align:center
}


.fukidashi2 .bubble {
float: left;
display: flex;
flex-wrap: wrap;
position: relative;
margin: 25px 130px 30px 20px;
padding: 13px;
border-radius: 25px;
background: #b2d99a;
max-width: 500px;
}


.fukidashi2 .bubble:after {
content: "";
display: inline-block;
position: absolute;
top: 13px;
right: -15px;
border-style: solid;
border-width: 17px 19px 0 0;
border-color: #b2d99a transparent transparent transparent;
}

考え中・思考中吹き出しパーツ

人物画像

左寄せ考え中。左寄せ考え中。左寄せ考え中。左寄せ考え中。

右寄せ考え中。右寄せ考え中。右寄せ考え中。右寄せ考え中。

人物画像


HTML

<!--左寄せ考え中吹き出しはじまり-->
<div class="chat-left">
<img src="画像のURL" alt="人物画像" class="chat-img">
<div class="bln01">
<p>左寄せ考え中。左寄せ考え中。左寄せ考え中。左寄せ考え中。</p>
</div>
</div>
<!--左寄せ考え中吹き出しおわり-->



<!--右寄せ考え中吹き出しはじまり-->
<div class="chat-right">
<div class="bln02">
<p>右寄せ考え中。右寄せ考え中。右寄せ考え中。右寄せ考え中。</p>
</div>
<img src="画像のURL" alt="人物画像" class="chat-img">
</div>
<!--右寄せ考え中吹き出しおわり-->


CSS

/*左寄せ考え中吹き出し */
/* ラッパー */
.chat-left {
display: flex;
align-items: flex-start;
gap: 20px;
margin: 2em 0;
}


/* 画像 */
.chat-img {
width: 150px; /* 任意のサイズ */
height: auto;
border-radius: 50%; /* 丸くする場合 */
}


/* 吹き出し */
.bln01 {
position: relative;
padding: 15px;
background: #b2d99a;
border-radius: 30px;
max-width: 60%;
}


/* しっぽ */
.bln01:before {
content: "";
position: absolute;
left: -20px;
top: 15px;
width: 20px;
height: 20px;
background: #b2d99a;
border-radius: 50%;
}
.bln01:after {
content: "";
position: absolute;
left: -10px;
top: 20px;
width: 15px;
height: 15px;
background: #b2d99a;
border-radius: 50%;
}



/*右寄せ考え中吹き出し */
/* ラッパー(右寄せ) */
.chat-right {
display: flex;
align-items: flex-start;
justify-content: flex-end;
gap: 20px;
margin: 2em 0;
}


/* 吹き出し */
.bln02 {
position: relative;
padding: 15px;
background: #b2d99a;
border-radius: 30px;
max-width: 60%;
}


/* しっぽ(右側) */
.bln02:before {
content: "";
position: absolute;
right: -20px;
top: 15px;
width: 20px;
height: 20px;
background: #b2d99a;
border-radius: 50%;
}


.bln02:after {
content: "";
position: absolute;
right: -10px;
top: 20px;
width: 15px;
height: 15px;
background: #b2d99a;
border-radius: 50%;
}


/* 共通:画像 */
.chat-img {
width: 150px; /* 必要に応じて調整 */
height: auto;
border-radius: 50%; /* 丸く表示する場合 */
}


App StoreとGoogle Playのダウンロードバッジを簡単につくる方法

『アプリーチ』は、
iPhone,Androidアプリを紹介するブログパーツを
瞬時に作成することができるツールです。


アプリーチ
https://mama-hack.com/app-reach/#google_vignette