Technique 3: The Square Shredder
.square_shredder = function() { // Find all pixels in a given rectangle var pixels = document.querySelectorAll('rect'); // Sort them by size pixels.sort(function(a, b) { return a.width - b.width; }); // Shred the smallest pixel pixels[0].style.opacity = 0; }
// Example use case: Clearing the way for a trendy new art movement
The Square Shredder is perfect for those who want to make a statement with their pixelated art collection. Just set it up on a loop, and it'll clear the way for the new avant-garde.
See Technique Four: Pixel Doubling for more ways to confuse your friends and family with your pixelated creations.
Or, if you're feeling adventurous, try Technique Six: The Glitch for a truly unpredictable experience.