< Blog index

Keeping styles in the style sheet

Even as browsers progress and add more support for CSS-based animation, we still find ourselves relying on JavaScript to get the job done. But that doesn’t mean we need to define our styles in our scripts.

Nikita Vasilyev has described a simple yet useful JavaScript technique for transitioning to and from ‘auto’ for CSS height and width values. While this is arguably something CSS should handle natively, it’s not in the spec and it’s unclear if any browser vendors will implement it independently.

As nicely as this solution works, I still prefer to keep the presentation defined by CSS as much as possible. In particular, I wasn’t happy leaving this particular line from Nikita’s script as-is:

1element.style.transition = 'width .5s ease-in-out';

We regularly get caught in this scenario—wanting to style with CSS, but needing JavaScript to make it happen. All too often, we end up with styles that are hardcoded into JavaScript.

If we’re smart we make these styles configurable, but then we’re adding complexity to our code and making it harder for other developers to use our code (do I pass my custom CSS as the third argument or fourth?). We can do better.

Referencing Style Sheets

In this particular case, the three transition values—property, duration, and timing function—are all hardcoded. It may make sense to leave the height or width property declared in the JavaScript if the script will be called upon for a specific property (e.g. an expandWidth() function customized for a particular module). But there’s no reason the duration and timing function can’t be defined in CSS.

Let’s make that line a little more adaptive:

1element.style.transitionProperty = 'width'; 2element.style.transitionDuration = getComputedStyle(element).transitionDuration; 3element.style.transitionTimingFunction = getComputedStyle(element).transitionTimingFunction;

And in the CSS:

1.expandable { 2 transition-property: none; /* More on this in a moment */ 3 transition-duration: .5s; 4 transition-timing-function: ease-in-out; 5}

View a Gist of the entire code

Separation of Concerns

Now the transition can be changed by another JavaScript module or style sheet without disrupting the expandWidth() function:

1.expandable.molasses { 2 transition-duration: 3s; 3} 4 5.expandable.robotic { 6 transition-timing-function: linear; 7}

Extendability

This pattern is handy if you’re working on a customizable framework:

app.scss

1$expand-transition-duration: 1s; 2 3@import "_framework"

_framework.scss

1$expand-transition-duration: 500ms !default; 2$expand-transition-timing-function: ease-in !default; 3 4.expandable { 5 transition: none $expand-transition-duration $expand-transition-timing-function; 6}

Which compiles to:

app.css

1.expandable { 2 transition: none 1s ease-in; 3}

Note

You’ll notice that the CSS includes transition-property: none. This prevents the CSS from having an effect on the element—that is, if you were to set transition-property: width you would see a wonky ‘double’ animation as both the JavaScript and CSS adjust the element’s width simultaneously. If you try to leave the property out, the browser will default to transition-property: all which isn’t what we want either.

And of course you will need to add vendor prefixes to keep things working across most browsers.