LoginSignup
6
5

More than 5 years have passed since last update.

CSSでマウスカーソルを見えなくする方法

Posted at

プレゼンとか展示やるのにWebブラウザでやってて、マウスカーソルが画面に表示されてるとうざいよね

簡単に消せた

body {
  cursor: none;
}

これだとaタグの:hoverとか勝てないことがあるので、
完全抹消したいときは!important

* {
  cursor: none !important;
}

しかし見失うのでjsでマウスが動いているときは表示止まったら消すみたいにしたほうが良い

var timer;
window.addEventListener('mousemove', function() {
  document.body.classList.remove("hideCursor");
  clearTimeout(timer);
  timer = setTimeout(function() {
    document.body.classList.add("hideCursor");
  }, 1000);
});

雑だけどこんな感じでいけるはず

6
5
1

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
6
5