Skip to content

Instantly share code, notes, and snippets.

@potato4d
Last active December 20, 2018 01:27
Show Gist options
  • Save potato4d/f407803b746b19d8e7bbc0172033bf57 to your computer and use it in GitHub Desktop.
Save potato4d/f407803b746b19d8e7bbc0172033bf57 to your computer and use it in GitHub Desktop.
CSS3でWebサイト上のナビゲートに使える「くり抜き(スポットライト)」を実装する ref: https://qiita.com/potato4d/items/3db5be441d89ea448c3c
.spotlight{
position: absolute;
left: 0;
top : 0;
width: 100vw;
height: 100vh;
background: radial-gradient(transparent, transparent 100px, rgba(0,0,0,0.4) 100px, rgba(0,0,0,0.4));
pointer-events: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment