Skip to content

Releases: foundation/motion-ui

Version 1.2.1

10 Feb 17:36
Compare
Choose a tag to compare

Added a composer.json.

Version 1.2.0

02 Feb 20:54
Compare
Choose a tag to compare
  • All of the CSS transition classes have default transition properties, which used to be applied using @extends. That caused all of those selectors with those properties to be bunched up at the top. Now they're added using an @include.
  • Fixed an issue with fade keyframes containing invalid characters if a decimal was used as the start or end opacity.
  • The built-in animation classes (.wiggle, .shake, .spin-cw, and .spin-ccw) now have animation-duration properties applied, so they can function without any extra CSS.
  • Added a tutorial on WOW.js integration to the documentation.
  • Added a test HTML page to test transition classes.

Version 1.1.1

23 Nov 17:01
Compare
Choose a tag to compare

Fixed .slide-out-down class not working properly.

Version 1.1.0

03 Nov 18:48
Compare
Choose a tag to compare

BREAKING CHANGES WEE WOO WEE WOO

This release changes all of the camelCase CSS classes to be hyphenated. This is consistent with how everything else is written in Foundation-land. This does break semver, but we're ripping this band-aid off now before Foundation for Sites 6 is released.

Also in this release, we removed -ms- prefixing from the pre-compiled CSS. IE9 doesn't support transitions or animations at all, and IE10 supports transitions, animations, and transforms unprefixed. This means the -ms- prefix isn't necessary at all. The JavaScript library still has a built-in fallback for browsers like IE9 that don't support transitions.

Version 1.0.3

22 Oct 16:20
Compare
Choose a tag to compare

Fixes an issue where transitions couldn't be created if motion-ui-transitions was not included.

Version 1.0.2

20 Oct 21:48
Compare
Choose a tag to compare

This release fixes a critical issue with mui-animation() and mui-queue() which prevented effect parameters passed as strings from working. (c72b658)

Version 1.0.1

19 Oct 20:09
Compare
Choose a tag to compare

This update fixes a few pressing launch bugs with animation classes. Huge thanks to @hugogiraudel for submitting over a dozen pull requests that fix bugs and improve code quality!

  • #22: mui-animation now uses @at-root when printing CSS.
  • #26: Remove quotes from keyframe percentages.
  • #28: Remove quotes from the value of animation-name.
  • #30: Removed turn-to-deg function and use turn values for spin animations instead of deg.

We also got many, many pull requests (once again, mostly from @hugogiraudel) that improve the quality of the Sass codebase, as well as the SassDoc documentation backing it.

Version 1.0.0

08 Oct 16:05
Compare
Choose a tag to compare

Initial release! Includes these effects:

  • Shake
  • Spin
  • Scale
  • Fade
  • Hinge
  • Wiggle
  • Shake

Also includes an animation queuing system.