运维小程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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