Skip to content

Instantly share code, notes, and snippets.

@LeetCodes
Created June 1, 2018 05:52
Show Gist options
  • Select an option

  • Save LeetCodes/f94142d5e9c1de8a505786506eb360dd to your computer and use it in GitHub Desktop.

Select an option

Save LeetCodes/f94142d5e9c1de8a505786506eb360dd to your computer and use it in GitHub Desktop.
Reverse clip path with blend modes
<!-- Define our SVG clip path -->
<svg width='0' height='0'>
<defs>
<clipPath id="cp" clipPathUnits="objectBoundingBox">
<path d="M0.500, 0.945 L0.994, 0.090 L0.006, 0.090 L0.500, 0.945 L0.500, 0.650 L0.262, 0.238 L0.738, 0.237 L0.500, 0.650z"></path>
</clipPath>
</defs>
</svg>
<!-- The actual elements we're using -->
<div class="triangle first"></div>
<div class="triangle second"></div>
// For more check out zachsaucier.com
html {
min-height: 100%;
background: #B8BEB4;
background: radial-gradient(#B8BEB4, #71685F);
background-size: cover;
}
.triangle {
// The actual clipping effect
clip-path: url(#cp);
// Keep it proportional
width: 50vw;
height: 50vw;
max-height: 75vh;
max-width: 75vh;
// Add the styling
background-size: cover;
background-blend-mode: screen;
// Center them
position: absolute;
top: 50%;
left: 50%;
}
.first {
background-color: #C5075C;
background-image: url("https://media.giphy.com/media/pE6GG0V2JCKUo/giphy.gif");
transform: translateX(-65%) translateY(-50%);
}
.second {
background-color: #03B897;
background-image: url("https://media1.giphy.com/media/fLg3MEWdgH5Ti/200.gif");
transform: translateX(-35%) translateY(-50%);
opacity: 0.8;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment