Bootstrapのtooltipをfont-awesomeのアイコンに使いたい
tooltip実装前の元のコード
application.html.slim
span.ul.navbar-text = link_to new_task_path, class: 'text-reset'
= content_tag(:i, "", class: "far fa-file fa-lg")
span.ul.navbar-text = link_to new_task_path, class: 'text-reset'
= content_tag(:i, "", class: "far fa-file fa-lg")
font-awesomeのアイコンをクリックすると新規作成画面に移動する。が、何の説明もなしじゃこのアイコンが何を意味するか分からないのでBootstrapによるtooltip実装を試みた。
<p><a href="#" data-toggle="tooltip" title="これがツールチップです">リンク</a>の上にカーソルを合わせるかタッチして下さい。</p>
試行錯誤
data-toggleとtitleを設定すればいいだけかと思いまず書いたコード
span.ul.navbar-text = link_to new_task_path, class: 'text-reset'
= content_tag(:i, "", class: "far fa-file fa-lg", data-toggle="tooltip", title="新規作成")
結果はエラー。原因はaを作るlink_toではなくiを作ってるcontent_tagの中に書いたからだと思う。
span.ul.navbar-text = link_to new_task_path, class: 'text-reset', data-toggle="tooltip", title="新規作成"
= content_tag(:i, "", class: "far fa-file fa-lg")
これでいけるかと思いきやこっちもダメ。
解決法
HTML5 - Rails,link_toメソッドの|teratail
上の記事を見ると、data-toggle
をシングルクォーテーションで囲っている。
最終的なコード
span.ul.navbar-text = link_to new_task_path, class: 'text-reset', 'data-toggle': "tooltip", 'title': "新規作成"
= content_tag(:i, "", class: "far fa-file fa-lg")
無事、アイコンが何を意味するのかをtooltipによって説明出来ました。
Author And Source
この問題について(Bootstrapのtooltipをfont-awesomeのアイコンに使いたい), 我々は、より多くの情報をここで見つけました https://qiita.com/Tonkat_prtq/items/9bb8341fa743f0543297著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .