Skip to content

Instantly share code, notes, and snippets.

@rintoug
Created March 25, 2017 09:02
Show Gist options
  • Save rintoug/189fd8b0b5374b9f16877bd1f3f4ff38 to your computer and use it in GitHub Desktop.
Save rintoug/189fd8b0b5374b9f16877bd1f3f4ff38 to your computer and use it in GitHub Desktop.
Masking images with jQuery/css
//jQuery cod
(function($){
$(document).ready(function($){
$('.news img').each(function(){
var $this = $(this);
$this.css({
'background':'url(' + this.src + ') center center no-repeat'
})
.attr('src','/your/site/url/images/mask.png');
});
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment