-
-
Save michalbednarski/3742720 to your computer and use it in GitHub Desktop.
Fade out elements on WebKit, Firefox and IE (no overlays, can use non-solid background)
This file contains 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
<style> | |
.fade-right { | |
-webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,1)), color-stop(0.75, rgba(0,0,0,1)), to(rgba(0,0,0,0))); | |
mask: url(#fade_right_svg_mask); | |
filter: alpha(style=1 startX=75 finishX=100); | |
} | |
#mask_demo { | |
background: #d0d0d0; | |
height: 100px; | |
width: 500px; | |
padding: 10px; | |
} | |
</style> | |
<div id="mask_demo" class="fade-right"> | |
Bacon ipsum dolor sit amet pig capicola flank drumstick tri-tip cow pork. Tenderloin pork belly ham cow chuck strip steak andouille fatback beef ribs. Tongue jowl pig chicken flank drumstick pancetta strip steak capicola biltong. Swine jowl beef ribs filet mignon spare ribs, beef bresaola tail venison pork loin pancetta prosciutto meatloaf fatback turkey. Bresaola turducken beef ribs ribeye salami chicken hamburger meatloaf. T-bone spare ribs rump, strip steak tongue sirloin biltong capicola corned beef bresaola. Swine ham tail filet mignon t-bone flank. | |
</div> | |
<svg height="0"> | |
<mask id="fade_right_svg_mask" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox"> | |
<linearGradient id="fade_right_svg_gradient" gradientUnits="objectBoundingBox" x2="1" y2="0"> | |
<stop stop-color="white" stop-opacity="1" offset="0.75"></stop> | |
<stop stop-color="white" stop-opacity="0" offset="1"></stop> | |
</linearGradient> | |
<rect x="0" y="0" width="1" height="1" fill="url(#fade_right_svg_gradient)"></rect> | |
</mask> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment