Home >Web Front-end >CSS Tutorial >Halloween, (CSS) Masks, and Logic Gates
On this site, there is a weekly Meme Monday thread where I normally publish the comiCSS cartoon and look for inspiration. Last week, @webbureaucrat shared a cartoon that caught my attention:
I found it funny and decided to create my own version with HTML and CSS using masks.
At first glance, the first row seemed easy to make: two radial gradients and picking the best mask-composite. The second row seemed more challenging. Would adding one extra gradient be enough?
Ignoring the lines and jack-o-lantern face features —that would be added later—, the base of the cartoon would be two circles that intersect. To achieve that, I created a mask with two radial gradients:
.pumpkin { mask: /* trick */ radial-gradient(circle at 40% 60%, #000 25%, #0000 0), /* treat */ radial-gradient(circle at 60% 60%, #000 25%, #0000 0); }
From there, I knew I would need to use mask-composite or the non-standard -webkit-mask-composite to combine the masks in different ways.
Here is an initial attempt that won't work on Firefox. I'll leave an image:
These are the values I used:
For the second row, I needed a third mask to occupy the whole container (and an additional one for the NAND!) I must admit, it is kind of messy:
It was messy. Temani Afif and Ana Tudor —you should follow them on social media if you don't already, they are amazing at CSS—, chipped in and helped simplify the code and use the standard mask-composite property.
The result is below. It requires setting the masks for each cell, and indicating the mask-composite value inline. And while I was at it, I decided to expand the joke a little and include a few more logical gates (some of them required more than just 2 and 3 masks):
Although it works fine as it is, I decided to make a shorter version that only uses the CSS standard for the CSS comic I publish (you can follow it on Medium, too!)
It only uses the logic gates generated with two masks and the standard mask-composite property, so it will work in all browsers. Plus, it showcases each value individually. Fun and educational (I hope).
The above is the detailed content of Halloween, (CSS) Masks, and Logic Gates. For more information, please follow other related articles on the PHP Chinese website!