tabs.wxs 457 B

1234567891011121314151617181920
  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(
  7. options.direction === 'Y'
  8. ? ';transform: translate3d( 0,' + -100 * options.currentIndex + '%, 0)'
  9. : ';transform: translate3d( ' + -100 * options.currentIndex + '%,0, 0)',
  10. );
  11. }
  12. return result.join(';');
  13. }
  14. module.exports = {
  15. animate: animate,
  16. };