city-casereport/miniprogram_npm/tdesign-miniprogram/tabs/tabs.wxs

17 lines
327 B
Plaintext
Raw Permalink Normal View History

2023-12-06 14:22:42 +08:00
/* eslint-disable */
function animate(options) {
var result = [];
if (options.duration) {
result.push('transition-duration: ' + options.duration + 's');
result.push('transform: translate3d( ' + -100 * options.currentIndex + '%,0, 0)');
}
return result.join(';');
}
module.exports = {
animate: animate,
};