jiaqingjiayi-xiaochengxu/甲情_甲意/node_modules/antd-mini/es/Popup/index.sjs

20 lines
634 B
Plaintext
Raw Normal View History

2024-11-15 03:51:28 +00:00
function getContentStyle(position, animation, duration, width, height) {
var style = '';
if (animation) {
style += "-webkit-animation-duration:".concat(duration, "ms; animation-duration:").concat(duration, "ms;");
}
if (position === 'top' || position === 'bottom') {
if (typeof height !== 'undefined' && height !== null) {
style += "height:".concat(height, "px");
}
}
if (position === 'left' || position === 'right') {
if (typeof width !== 'undefined' && width !== null) {
style += "width:".concat(width, "px");
}
}
return style;
}
export default {
getContentStyle: getContentStyle
};