Quantcast
Channel: zReference
Viewing all articles
Browse latest Browse all 19

XOR Color Invert

$
0
0
var color = 0xFFFF00; function toHex(color) { return '#' + ('000000' + color.toString(16)).substr(-6); } function onClick() { color ^= 0xFFFFFF; document.body.style.background = toHex(color); } onClick(); document.addEventListener('click', onClick); Have a look at the slighty different ES6 version: See the Pen XOR Color Invert by Zevan Rosser (@ZevanRosser) on CodePen. This is a great trick and a […]

Viewing all articles
Browse latest Browse all 19

Trending Articles