android13/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js
liiir1985 7f62dcda9f initial 2024-06-22 20:45:49 +08:00
..
docs initial 2024-06-22 20:45:49 +08:00
externs initial 2024-06-22 20:45:49 +08:00
src initial 2024-06-22 20:45:49 +08:00
.bower.json initial 2024-06-22 20:45:49 +08:00
CONTRIBUTING.md initial 2024-06-22 20:45:49 +08:00
COPYING initial 2024-06-22 20:45:49 +08:00
History.md initial 2024-06-22 20:45:49 +08:00
README.md initial 2024-06-22 20:45:49 +08:00
bower.json initial 2024-06-22 20:45:49 +08:00
web-animations-next-lite.min.html initial 2024-06-22 20:45:49 +08:00
web-animations-next-lite.min.js initial 2024-06-22 20:45:49 +08:00
web-animations-next-lite.min.js.map initial 2024-06-22 20:45:49 +08:00
web-animations-next.min.html initial 2024-06-22 20:45:49 +08:00
web-animations-next.min.js initial 2024-06-22 20:45:49 +08:00
web-animations-next.min.js.map initial 2024-06-22 20:45:49 +08:00
web-animations.html initial 2024-06-22 20:45:49 +08:00
web-animations.min.html initial 2024-06-22 20:45:49 +08:00
web-animations.min.js initial 2024-06-22 20:45:49 +08:00
web-animations.min.js.map initial 2024-06-22 20:45:49 +08:00

README.md

What is Web Animations?

A new JavaScript API for driving animated content on the web. By unifying the animation features of SVG and CSS, Web Animations unlocks features previously only usable declaratively, and exposes powerful, high-performance animation capabilities to developers.

What is in this repository?

A JavaScript implementation of the Web Animations API that provides Web Animation features in browsers that do not support it natively. The polyfill falls back to the native implementation when one is available.

Quick start

Here's a simple example of an animation that fades and scales a <div>.
Try it as a live demo.

<!-- Include the polyfill -->
<script src="web-animations.min.js"></script>

<!-- Set up a target to animate -->
<div class="pulse" style="width: 150px;">Hello world!</div>

<!-- Animate! -->
<script>
    var elem = document.querySelector('.pulse');
    var animation = elem.animate({
        opacity: [0.5, 1],
        transform: ['scale(0.5)', 'scale(1)'],
    }, {
        direction: 'alternate',
        duration: 500,
        iterations: Infinity,
    });
</script>

Documentation

We love feedback!

Keep up-to-date

Breaking polyfill changes will be announced on this low-volume mailing list: web-animations-changes@googlegroups.com.

More info