Skip to content

Instantly share code, notes, and snippets.

@coffeepostal
Last active September 29, 2016 22:17
Show Gist options
  • Save coffeepostal/e236de380cc49448227eb3f82d339e78 to your computer and use it in GitHub Desktop.
Save coffeepostal/e236de380cc49448227eb3f82d339e78 to your computer and use it in GitHub Desktop.
JS: Trianglify Settings
// Multiple DIVs as a true background-image
function addTriangleTo(target) {
var dimensions = target.getClientRects()[0];
var pattern = Trianglify({
width: dimensions.width,
height: dimensions.height
});
target.style['background-image'] = 'url(' + pattern.png() + ')';
}
addTriangleTo(document.getElementById('something'));
addTriangleTo(document.getElementById('other'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment