jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/Popup/index.sjs
2024-11-10 15:01:22 +08:00

20 lines
540 B
JavaScript

function getContentStyle(position, animation, duration, width, height) {
let style = '';
if (animation) {
style += `-webkit-animation-duration:${duration}ms; animation-duration:${duration}ms;`;
}
if (position === 'top' || position === 'bottom') {
if (typeof height !== 'undefined') {
style += `height:${height}px`;
}
}
if (position === 'left' || position === 'right') {
if (typeof width !== 'undefined') {
style += `width:${width}px`;
}
}
return style;
}
export default { getContentStyle };