tabs.wxs 327 B

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. };