Releases: foundation/motion-ui
Version 1.2.1
Added a composer.json
.
Version 1.2.0
- 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 haveanimation-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
Fixed .slide-out-down
class not working properly.
Version 1.1.0
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
Fixes an issue where transitions couldn't be created if motion-ui-transitions
was not included.
Version 1.0.2
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
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 useturn
values for spin animations instead ofdeg
.
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
Initial release! Includes these effects:
- Shake
- Spin
- Scale
- Fade
- Hinge
- Wiggle
- Shake
Also includes an animation queuing system.