A history of the Apple mouse in CSS

Wdd Logo.
October 24, 2013
A history of the Apple mouse in CSS.

thumbnailTake a look at this incredible Pen, it's an homage to how radically the Apple mouse has evolved over the years. Using a clever blend of CSS drawing and transitions, Josh Bader illustrates the beautiful simplicity of a device that — without giving a second glance — we use every single day.

Clicking through the different mice (how meta!) is nostalgic. It is reminiscent of a time when what was possible to accomplish with the peripheral was nowhere near as impressive as it is today. With apps like BetterTouchTool and Apple’s own operating system, we can interact with the mouse in ways that Doug Engelbart could never have imagined in 1963 (twenty years before the original Lisa Mouse).

Watching the seamless transitions between the different models reveals some peculiar similarities in the mice, and gives a sense of the mouse evolving. The apple logo, while not always given the same emphasis, is present in all of the designs. We begin to see the slow disappearance of the standard single-click interface in 1998 with the release of Apple’s USB Mouse (iMac Mouse in the pen).

By reusing all of the same basic elements, and applying transitioning styles to each one, the code is, like the subject matter, elegant and simple. Using just a handful of <i> elements with mouse-specific styles applied to each of them, Bader has created a unique work of art that can be appreciated by even those who may be less CSS-savvy.

mice_001

mice_002

mice_003

mice_004

mice_005

mice_006

mice_007

mice_008

How's it done?

As previously stated, each mouse reuses some of the same components. This allows the markup to be concise and the CSS to be structured in a logical way that is easy to read. Each mouse is represented by its own block similar to what is displayed below:

/* Name */
/* Shapes and Colors */
.name.mouse, .lisa.mouse .top { }
.name.mouse { }
.name.mouse .top { }
.name .cable, .lisa .cable i, .lisa .button { }
.name .cable { }

/* Common styles for all “cable” elements like side buttons or cable protectors */
.name .cable i { }

/* Handles size and positioning of “cable” elements */
.name .cable i:nth-child(1) { }
.name .cable i:nth-child(2) { width: 60px; height: 10px; top: 90px; left: -25px; }
.name .cable i:nth-child(3) { }
.name .cable i:nth-child(4) { }
.name .cable i:nth-child(5) { }

/* These are self-explanatory */
.name .button { }
.name .logo { }

I’ve stripped out the actual styles so that we can focus on the actual structure of the CSS. It’s actually not as complicated as one might think. If you’d like to dig into what styles are applied where, refer to the original source.

The shapes and colors are mostly accomplished using the border-radius property with Multiple Box-Shadows, while the actual size and placement of the mouse-specific elements is handled by the cable’s child elements.

Finally, with some clever Javascript, Bader updates the parent mouse class based on the list-item that the user clicks on:

$('li').on('click', function() {
var self = $(this);
$('.active').removeClass('active');
self.addClass('active');
self.closest('ul').attr('data-mouse', self.data('mouse') + ' mouse');
$('.mouse').removeAttr('class').addClass('mouse ' + self.data('mouse'));
});

Overall, this is very fun bit of code to play around with, even if just for the nostalgia. The patterns used here could easily be applied to other projects. It’s fascinating to see these projects come alive on a site like Codepen, and the open nature of the site means that anyone is able to fork this pen and change it in any way they see fit.

Have you tried drawing in just CSS? Which is your favorite Apple mouse? Let us know in the comments.

WDD Staff

WDD staff are proud to be able to bring you this daily blog about web design and development. If there's something you think we should be talking about let us know @DesignerDepot.

Read Next

30 Most Exciting New Tools for Designers, 2023

As we near the end of 2023, we wanted to take a look back over all the tools we collected over the past year, to pick…

3 Essential Design Trends, December 2023

While we love the holidays, too much of a seasonal theme can get overwhelming. Thankfully, these design trends strike a…

10 Easy Ways to Make Money as a Web Designer

When you’re a web designer, the logical way to make money is designing websites; you can apply for a job at an agency,…

The 10 Most Hated Fonts of All Time

Remember when Comic Sans wasn’t the butt of the jokes? Long for the days when we actually enjoyed using the Impact…

15 Best New Fonts, November 2023

2023 is almost over, and the new fonts are still coming thick and fast. This month, we’ve found some awesome variable…

Old School Web Techniques Best Forgotten

When the web first entered the public consciousness back in the 90s, it was primarily text-based with minimal design…

20 Best New Websites, November 2023

As the nights draw in for the Northern hemisphere, what better way to brighten your day than by soaking up some design…

30 Amazing Chrome Extensions for Designers and Developers

Searching for a tool to make cross-platform design a breeze? Desperate for an extension that helps you figure out the…

Exciting New Tools for Designers, November 2023

We’ve got a mix of handy image helpers, useful design assets, and clever productivity tools, amongst other treats. Some…

The Dangers of Doomscrolling for Designers and How to Break Free

As a creative professional, navigating the digital realm is second nature to you. It’s normal to follow an endless…

From Image Adjustments to AI: Photoshop Through the Years

Remember when Merriam-Webster added Photoshop to the dictionary back in 2008? Want to learn how AI is changing design…

3 Essential Design Trends, November 2023

In the season of giving thanks, we often think of comfort and tradition. These are common themes with each of our three…