65

Web ページの特定の領域にマウスを合わせるとツールチップを表示する JavaScript ベースのライブラリがたくさんあります。単純なものもあれば、CSS でスタイル設定された HTML コンテンツをツールチップに表示できるものもあります。

しかし、JavaScript を使用せずにスタイル付きのツールチップを表示する方法はありますか? 属性のみを使用するtitleと、タグは処理されfoo<br />barません (たとえば、改行は生成されません)。JavaScript を使用せずにスタイル付きの HTML コンテンツを表示できるソリューションを探しています。

4

8 に答える 8

15

title属性の使用:

<a href="#" title="Tooltip here">Link</a>

于 2013-06-30T14:12:48.660 に答える
10

koningdavid のものに似ていますが、display:none とブロックで動作し、スタイルを追加します。

div.tooltip {
  position: relative;
  /*  DO NOT include below two lines, as they were added so that the text that
        is hovered over is offset from top of page*/
  top: 10em;
  left: 10em;
  /* if want hover over icon instead of text based, uncomment below */
  /*    background-image: url("../images/info_tooltip.svg");
            /!* width and height of svg *!/
            width: 16px;
            height: 16px;*/
}


/* hide tooltip */

div.tooltip span {
  display: none;
}


/* show and style tooltip */

div.tooltip:hover span {
  /* show tooltip */
  display: block;
  /* position relative to container div.tooltip */
  position: absolute;
  bottom: 1em;
  /* prettify */
  padding: 0.5em;
  color: #000000;
  background: #ebf4fb;
  border: 0.1em solid #b7ddf2;
  /* round the corners */
  border-radius: 0.5em;
  /* prevent too wide tooltip */
  max-width: 10em;
}
<div class="tooltip">
  hover_over_me
  <span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec quis purus dui. Sed at orci. </span>
</div>

于 2015-10-07T15:01:53.960 に答える
7

これは非常に興味深いもので、

HTML と CSS のみ

.help-tip {
  position: absolute;
  top: 18px;
  left: 18px;
  text-align: center;
  background-color: #BCDBEA;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 26px;
  cursor: default;
}

.help-tip:before {
  content: '?';
  font-weight: bold;
  color: #fff;
}

.help-tip:hover span {
  display: block;
  transform-origin: 100% 0%;
  -webkit-animation: fadeIn 0.3s ease-in-out;
  animation: fadeIn 0.3s ease-in-out;
}

.help-tip span {
  display: none;
  text-align: left;
  background-color: #1E2021;
  padding: 5px;
  width: 200px;
  position: absolute;
  border-radius: 3px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  left: -4px;
  color: #FFF;
  font-size: 13px;
  line-height: 1.4;
}

.help-tip span:before {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-bottom-color: #1E2021;
  left: 10px;
  top: -12px;
}

.help-tip span:after {
  width: 100%;
  height: 40px;
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
}
<span class="help-tip">
    	<span > This is the inline help tip! </span>
</span>

于 2016-06-29T09:50:43.930 に答える
2

css で行う別の同様の方法:

#img {  }
#img:hover {visibility:hidden}
#thistext {font-size:22px;color:white }
#thistext:hover {color:black;}
#hoverme {width:50px;height:50px;}

#hoverme:hover { 
background-color:green;
position:absolute ;
left:300px;
top:100px;
width:40%;
height:20%;
}
<p id="hoverme"><img id="img" src="http://a.deviantart.net/avatars/l/o/lol-cat.jpg"></img><span id="thistext">LOCATZ!!!!</span></p>

試してみてください: http://jsfiddle.net/FdBu7/

そして、トランジションとそれを行う新しい方法に関するリンクがいくつかあります: http://www.w3schools.com/css3/css3_transitions.asp http://dev.opera.com/articles/view/css3-show-and-hide /

于 2013-06-30T14:52:42.853 に答える
1

title 属性を使用できます。たとえば、テキストの上にツールチップが必要な場合は、次のようにします。

<span title="This is a Tooltip">This is a text</span>

于 2013-06-30T14:13:03.773 に答える