primevue-mirror/components/lib/props/style/animation/modules/animate.js

17 lines
330 B
JavaScript
Raw Normal View History

2024-02-16 08:48:00 +00:00
/* const { addAnimation } = require('../rules');
module.exports = (root, opts) => {
addAnimation(
{
name: 'animate-width',
from: { width: '0' },
to: { width: '100%' },
duration: '1000ms',
timing: 'linear'
},
root,
opts
);
};
*/