运维小程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516
  1. /* eslint-disable */
  2. function animate(options) {
  3. var result = [];
  4. if (options.duration) {
  5. result.push('transition-duration: ' + options.duration + 's');
  6. result.push('transform: translate3d( ' + -100 * options.currentIndex + '%,0, 0)');
  7. }
  8. return result.join(';');
  9. }
  10. module.exports = {
  11. animate: animate,
  12. };