储能智慧云小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

tabs.wxs 327B

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