在应用el-upload所在页面加上如下代码,可以取消过渡效果,并且更改图片显示方式
/*去除upload组件过渡效果*/
.el-upload-list__item {
transition: none !important;
}
.el-upload-list__item-thumbnail {
/* 图片在方框内显示长边 */
object-fit: scale-down !important;
}
如果加上后仍然没有效果,可以加上::v-deep深度选择器
/*去除upload组件过渡效果*/
::v-deep .el-upload-list__item {
transition: none !important;
}
::v-deep .el-upload-list__item-thumbnail {
/* 图片在方框内显示长边 */
object-fit: scale-down !important;
}
一起试试吧!!