Skip to content

Instantly share code, notes, and snippets.

@sukhikh18
Created August 14, 2018 19:51
Show Gist options
  • Save sukhikh18/5969504a09313477f3b378ac32559b67 to your computer and use it in GitHub Desktop.
Save sukhikh18/5969504a09313477f3b378ac32559b67 to your computer and use it in GitHub Desktop.
// <!-- IE and EDGE unsupported -->
@mixin transparent-gradient-mask($direction: 'to bottom', $from: rgba(0,0,0,1), $to: rgba(0,0,0,0)) {
// -webkit-mask-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
-webkit-mask-image: linear-gradient(unquote($direction), $from, $to);
mask-image: linear-gradient(unquote($direction), $from, $to);
}
.pane {
position: relative;
display: block;
margin: 150px auto;
width: 300px;
height: 300px;
background: #ccc;
@include transparent-gradient-mask('to right', rgba(0,0,0,.8));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment