Skip to content

Instantly share code, notes, and snippets.

@fxrobin
Last active April 4, 2018 11:18
Show Gist options
  • Select an option

  • Save fxrobin/5095e7afc5a60167bbd9f6add1b9cd60 to your computer and use it in GitHub Desktop.

Select an option

Save fxrobin/5095e7afc5a60167bbd9f6add1b9cd60 to your computer and use it in GitHub Desktop.
SCSS Night Vision Effect on Image
.night-vision-effect {
$url : url(photo.jpg);
$line-width: 5px;
background-image:
$url,
radial-gradient(
#0F0,
#000
),
repeating-linear-gradient(
transparent 0,
rgba(0,0,0,0.1) $line-width/2,
transparent $line-width
);
background-size: cover;
background-position: center;
background-blend-mode: overlay;
}
ref : http://bennettfeely.com/image-effects/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment