Antd vue 点击下拉框会偏移然后闪烁

文章讲述了在使用ANTD库时,下拉框和日期选择器的动画可能导致观感不佳,通过关闭动画效果可以解决闪动和位置调整问题,以提升用户界面的流畅性。
摘要由CSDN通过智能技术生成

ANTD 下拉框点开都会有动画效果,所以会闪一下,再缩放自适应下,位置会闪一下缩放前位置再定位正确位置影响观感,所以关闭动画即可。

/* 日期选择框动画样式关闭 */
.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-bottomLeft, .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-bottomLeft {
  -webkit-animation-name: unset;
  animation-name: unset;
  -webkit-animation-duration: .05s;
  animation-duration: .05s;
}

.ant-calendar-picker-container.slide-up-appear.slide-up-appear-active.ant-calendar-picker-container-placement-topLeft, .ant-calendar-picker-container.slide-up-enter.slide-up-enter-active.ant-calendar-picker-container-placement-topLeft {
  -webkit-animation-name: unset;
  animation-name: unset;
  -webkit-animation-duration: .05s;
  animation-duration: .05s;
}

.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-bottomLeft {
  -webkit-animation-name: unset;
  animation-name: unset;
  -webkit-animation-duration: .05s;
  animation-duration: .05s;
}

.ant-calendar-picker-container.slide-up-leave.slide-up-leave-active.ant-calendar-picker-container-placement-topLeft {
  -webkit-animation-name: unset;
  animation-name: unset;
  -webkit-animation-duration: .05s;
  animation-duration: .05s;
}
/* 滚动条动画样式关闭 */
.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-bottomLeft, .ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-bottomLeft {
  -webkit-animation-name: unset;
  animation-name: unset;
  -webkit-animation-duration: .05s;
  animation-duration: .05s;
}

.ant-select-dropdown.slide-up-appear.slide-up-appear-active.ant-select-dropdown-placement-topLeft, .ant-select-dropdown.slide-up-enter.slide-up-enter-active.ant-select-dropdown-placement-topLeft {
  -webkit-animation-name: unset;
  animation-name: unset;
  -webkit-animation-duration: .05s;
  animation-duration: .05s;
}

.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-bottomLeft {
  -webkit-animation-name: unset;
  animation-name: unset;
  -webkit-animation-duration: .05s;
  animation-duration: .05s;
}

.ant-select-dropdown.slide-up-leave.slide-up-leave-active.ant-select-dropdown-placement-topLeft {
  -webkit-animation-name: unset;
  animation-name: unset;
  -webkit-animation-duration: .05s;
  animation-duration: .05s;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值