画像のツールチップ


132

ツールチップを使用しています。しかし、私はそれを画像タグの上に置きたいのですが、画像の上にマウスを置くとツールチップが機能するはずです。私は試しましたが、イメージタグで動作しません。


何語?HTML、C#、Java、...?
マティアス

4
を使用しdocument.getElementById('theImage').title='tooltip text'ます。
Jay


問題は、<img>タグが自己終了であるため、その中に別の要素を追加できないことです。
ジャスティン

回答:


351

これには、画像の標準HTMLタイトル属性を使用できます。

<img src="source of image" alt="alternative text" title="this will be displayed as a tooltip"/>

3

100%機能している作業プロジェクトのツールチップを設定しました

<!DOCTYPE html>
<html>
<style>
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
.size_of_img{
width:90px}
</style>

<body style="text-align:center;">

<p>Move the mouse over the text below:</p>

<div class="tooltip"><img class="size_of_img" src="https://babeltechreviews.com/wp-content/uploads/2018/07/rendition1.img_.jpg" alt="Image 1" /><span class="tooltiptext">grewon.pdf</span></div>

<p>Note that the position of the tooltip text isn't very good. Check More Position <a href="https://www.w3schools.com/css/css_tooltip.asp">GO</a></p>

</body>
</html>


0

JavaScriptを使用して、ページ上のすべての画像のツールチップを設定できます。

<!DOCTYPE html>
<html>
    <body>
    <img src="http://sushmareddy.byethost7.com/dist/img/buffet.png" alt="Food">
    <img src="http://sushmareddy.byethost7.com/dist/img/uthappizza.png" alt="Pizza">
     <script>
     //image objects
     var imageEls = document.getElementsByTagName("img");
     //Iterating
     for(var i=0;i<imageEls.length;i++){
        imageEls[i].title=imageEls[i].alt;
        //OR
        //imageEls[i].title="Title of your choice";
     }
        </script>
    </body>
</html>


-6

次の形式を使用して、画像のツールチップを生成できます。

<div class="tooltip"><img src="joe.jpg" />
  <span class="tooltiptext">Tooltip text</span>
</div>

3
これを実際に機能させるためのCSSが不足しています。.tooltip:hover .tooltiptextのクラスを追加し、.tooltiptextを適切に配置した場合、これは、そのプレゼンテーションをより詳細に制御できるツールチップを表示する優れた方法となる場合があります。
LKM

彼らはおそらくw3学校に基づいています:w3schools.com/css/css_tooltip.asp 私はそれが不完全なソリューションであり、このルートに行きたい人にリンクを提供するだけであることに同意します。
ジャスティン
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.