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