Socket
Socket
Sign inDemoInstall

web-animations-js

Package Overview
Dependencies
Maintainers
3
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

web-animations-js - npm Package Versions

2

2.3.2

Diff

Changelog

Source

2.3.2 - June 25 2019

alancutter
published 2.3.1 •

Changelog

Source

2.3.1 - July 20 2017

  • Fix [https://github.com/web-animations/web-animations-js/issues/157](missing web-animations.min.js issue)
alancutter
published 2.2.5 •

Changelog

Source

2.2.5 - April 17 2017

  • Removed erroneously added *.gz files from release.
alancutter
published 2.2.4 •

alancutter
published 2.2.1 •

Changelog

Source

2.2.1 - April 28 2016

alancutter
published 2.1.5 •

alancutter
published 2.2.0 •

Changelog

Source

2.2.0 - April 6 2016

  • Deprecated the use of hyphens in property names.

    For example, this is deprecated:

      element.animate([{'font-size': '0px'}, {'font-size': '10px'}]);
    

    and this should be used instead:

      element.animate([{fontSize: '0px'}, {fontSize: '10px'}]);
    
    • Added arbitrary easing capitalisation.

    • Added "id" effect option. (https://drafts.csswg.org/web-animations/#dom-keyframeanimationoptions-id)

    • Added "oncancel" event handler.

    • Added value list keyframe syntax.

      As as alternative to:

      element.animate([{color: 'red'}, {color: 'green'}, {color: 'blue'}]);
      

      you can now use:

      element.animate({color: ['red', 'green', 'blue']});
      
    • Fixed easing TypeError in FireFox Nightly when using groups.

    • Fixed delayed animation updates on Safari and Firefox

    • Fixed infinite recursion when setting onfinish to null.

2
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc