zoujiandong 2bd2fd31ac 1.22
2024-01-22 08:55:30 +08:00

21 lines
457 B
XML

/* eslint-disable */
function animate(options) {
var result = [];
if (options.duration) {
result.push('transition-duration: ' + options.duration + 's');
result.push(
options.direction === 'Y'
? ';transform: translate3d( 0,' + -100 * options.currentIndex + '%, 0)'
: ';transform: translate3d( ' + -100 * options.currentIndex + '%,0, 0)',
);
}
return result.join(';');
}
module.exports = {
animate: animate,
};