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

              
                <div class="stalker" id="js-stalker"></div>
<a href="#">じゅんぺいブログ</a>
              
            
!

CSS

              
                /* マウスストーカーのスタイル */
.stalker {
  background-color: rgba(28, 180, 211, .5); /* 背景色 */
  border-radius: 50%; /* 正円 */
  height: 30px; /* 円の高さ */
  left: -15px; /* 円の幅の半分 */
  opacity: 0; /* カーソルを画面内に入れるまでは透明 */
  pointer-events: none; /* 直下のリンクをクリック可能にする */
  position: fixed; /* スクロールしてもカーソルの位置で固定 */
  top: -15px; /* 円の高さの半分 */
  transition: all .3s ease-out; /* 遅れてついてくる時間 */
  width: 30px; /* 円の幅 */
  z-index: 999; /* 一番上に来るように */
}
/* リンクにホバーした時のスタイル */
.stalker.js-hover {
  background-color: rgba(255, 99, 71, .5); /* カーソルがリンク上に乗ったときの背景色 */
  height: 50px; /* カーソルがリンク上に乗ったときの高さ */
  left: -25px; /* 円の幅の半分 */
  top: -25px; /* 円の高さの半分 */
  width: 50px; /* カーソルがリンク上に乗ったときの幅 */
}

/* レイアウトのためのスタイル */
a {
  display: inline-block;
  font-size: 24px;
}
body {
  margin-left: 50px;
  margin-top: 50px;
}
              
            
!

JS

              
                $(function () {
  const stalker = $("#js-stalker");
  $(document).on("mousemove", function (e) {
    // マウスの座標を取得
    const x = e.clientX;
    const y = e.clientY;
    // ストーカーの位置を更新
    stalker.css({
      opacity: 1, // カーソルが画面内に入ったら不透明にする
      transform: "translate(" + x + "px, " + y + "px)", // マウスの座標に移動
    });
  });
  $("a").on({
    mouseenter: function () {
      stalker.addClass("js-hover"); // リンクにカーソルが乗ったときに拡大するクラスを追加
    },
    mouseleave: function () {
      stalker.removeClass("js-hover"); // リンクからカーソルが離れたときに拡大するクラスを削除
    },
  });
});

              
            
!
999px

Console