3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Boostrap4でtooltipに画像を表示させる

Last updated at Posted at 2017-12-02

Tooltip with HTML

Bootstrap4からTooltipにHTMLを直接書けるようになったので、テキストだけではなく画像も表示できるのか確認しました。

公式ドキュメント

Tooltips · Bootstrap

tooptips_with_HTML.png

HTML
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-html="true" title="<em>Tooltip</em> <u>with</u> <b>HTML</b>">
  Tooltip with HTML
</button>
JS
$(function () {
  $('[data-toggle="tooltip"]').tooltip()
})

Tooltipに画像を表示させる

CodePen: Bootstrap4 tooltip with image

tooptips_with_Image.png

HTML
<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-html="true" title="animal<br><img src=&quot;https://placeimg.com/100/100/animals&quot;>">
  Tooltip with Image
</button>
JS
$(function () {
  $('[data-toggle="tooltip"]').tooltip()
})
3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?