Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h2>hover以外のイベントでツールチップを表示する</h2>

<h3>クリックでツールチップを非表示(1度だけ実行)</h3>
<p>この<span class="tooltip-click link" title="ツールチップメッセージ">テキスト</span>をクリックすると、ツールチップが非表示になります。</p>

<h3>クリックでツールチップの表示・非表示を切りかえる</h3>
<p>この<span class="tooltip-toggle link" title="ツールチップメッセージ">テキスト</span>をクリックすると、ツールチップの表示・非表示が切り替わります。</p>

<h3>テキストフィールド入力中にツールチップを表示</h3>
<input type="text" class="tooltip-istyping" placeholder="09012345678" />
              
            
!

CSS

              
                h2 {
  color: orange;
}
h3 {
  margin-bottom:10px;
}
h3:not(:first-of-type) {
  margin-top:40px;
}
.link {
  text-decoration: underline;
  color: blue;
}
.link:hover {
  cursor: pointer !important;
  text-decoration: none;
}
img {
  max-width: 300px;
}

/* ----入力フォーム共通---- */

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="password"],
input[type="url"],
input[type="number"],
select,
textarea {
  padding: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
  max-width: 43%;
  margin: 5px;
}

input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
input[type="search"]:hover,
input[type="password"]:hover,
input[type="url"]:hover,
input[type="number"]:hover,
select:hover,
textarea:hover {
  border: 1px solid #666;
}

input[type="radio"] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 5px;
}
              
            
!

JS

              
                $(function() {

  // クリックでツールチップを非表示(1度だけ実行)
  $('.tooltip-click').on("click", function() {
    $(this).hideBalloon();
  }).showBalloon();

  // クリックでツールチップの表示・非表示を切り替える
  let toggleShown = false;
  $('.tooltip-toggle').on("click", function() {
    toggleShown ? $(this).hideBalloon() : $(this).showBalloon();
    toggleShown = !toggleShown;
  }).hideBalloon();

  // テキストフィールド入力中にツールチップを表示(バリデーション)
  $('.tooltip-istyping').on("keyup blur", function (e) {
    let errorMessage = "電話番号を入力してください";

     // 入力中の処理
     if (e.type == "keyup") {
       // エラーメッセージが変更になった時
       if ($(this)?.data("balloon")?.data('active')) {
        $(this).data("balloon").data('active', false);
        }
        // 数字以外が入力された時のエラーメッセージ
        if (isNaN(e.target.value)) {
          errorMessage = "半角数字で入力してください"
        }
        $(this).showBalloon({
          contents: errorMessage
        });
     }

     // 未入力、またはカーソルが外れた時
     if (e.type == "blur" || e.target.value == "") {
      $(this).hideBalloon();
     }
  }).hideBalloon();
});

              
            
!
999px

Console