Last active
December 20, 2018 01:27
-
-
Save potato4d/f407803b746b19d8e7bbc0172033bf57 to your computer and use it in GitHub Desktop.
CSS3でWebサイト上のナビゲートに使える「くり抜き(スポットライト)」を実装する ref: https://qiita.com/potato4d/items/3db5be441d89ea448c3c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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