Web Animations API & SVG & requestAnimationFrame
Web Animations API
WWAPI
https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API
https://caniuse.com/#feat=web-animation
https://css-tricks.com/css-animations-vs-web-animations-api/
http://danielcwilson.com/blog/2015/07/animations-part-1/
https://www.cnblogs.com/xgqfrms/p/11995088.html
demo
js
const openAnimation = [
{ transform: 'scale(0)' },
{ transform: 'scale(1)' },
];
document.querySelector('.modal').animate(
openAnimation, {
duration: 1000, // 1s
iterations: 1, // single iteration
easing: 'ease-in' // easing function
}
);
css
@keyframes openAnimation {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
.modal {
animation: openAnimation 1s 1 ease-in;
}
refs
©xgqfrms 2012-2020
www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/12161388.html
未经授权禁止转载,违者必究!