17 lines
471 B
JavaScript
17 lines
471 B
JavaScript
/* const { addAnimation } = require('../rules');
|
|
|
|
module.exports = (root, opts) => {
|
|
addAnimation(
|
|
{
|
|
name: 'scalein',
|
|
from: { opacity: '0', transform: 'scaleY(0.8)', transition: 'transform .12s cubic-bezier(0, 0, 0.2, 1), opacity .12s cubic-bezier(0, 0, 0.2, 1)' },
|
|
to: { opacity: '1', transform: 'scaleY(1)' },
|
|
duration: '.15s',
|
|
timing: 'linear'
|
|
},
|
|
root,
|
|
opts
|
|
);
|
|
};
|
|
*/
|