Ant Design 坑

1 关闭动画
例: < Select transitionName={none}/>;
2 IE下会闪一下

样式文件修改:

animation-duration: 0s !important;

animation-iteration-count: 0 !important;

3 getPopupContainer固定显示

现有问题例如:Select组件会随鼠标滚动

例如:<Popconfirm getPopupContainer: () => document.body /> 默认:以body为相对点

修改为:<Popconfirm getPopupContainer: triggerNode => triggerNode.parentNode />以父元素为相对点

4 取消样式

例如:

color: initial
5 自定义组件后,遮罩层 固定
阻止touchmove/onmousemove事件冒泡
posted @ 2020-10-14 15:46  贼欧  阅读(209)  评论(0编辑  收藏  举报