2
2

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.

簡単♪jQuery UIでtooltipで実装!

Posted at

はじめに

お仕事で、ツールチップの実装があったので、その使いを書き記します。
ツールチップはマウスオーバーした際に表示される枠内の補足説明のやつです。
download.png

材料

  • HTML...お好みのページ
  • jQuery...1ファイル
  • jQuery UI...1ファイル
  • jQuery UIのCSS...1ファイル

1.下ごしらえ

jQueryとjQuery UIを読み込みます。
ダウンロード版でもCDNでも可能。(jQuery UIのCSSも読み込むのを忘れずに!)
※各公式を参照

sample.html
<html lang="ja">
<head>
  <title>サンプル</title>
  <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
  <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js" integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU=" crossorigin="anonymous"></script>
</head>
<body>
  <p class="test">テスト</p>
</body>
</html>

※ダウンロードして参照しても同じです

2.ツールチップの処理を追加

一文追加します。(セレクタはお好みで)
$(".test").tooltip();

sample.html
  <p class="test">テスト</p>
  <script>
    $(".test").tooltip();
  </script>

...まだ、動きませんよね?

3.ツールチップで表示する内容を記入

ツールチップで表示するテキストをtitleに入れて完成!

sample.html
  <p class="test" title="ここに出したいテキストを入力">テスト</p>

4.できあがり!

無題.png
デベロッパーツールで構造を確認してCSSを上書きしたり、オプションを設定してさらにアレンジできるのでためしてみてください。

以上

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?