简体   繁体   English

如何从 antd 图片中删除编辑器图标

[英]how to remove editors icons from antd Image

how to remove other editor icons like zoom, unzoom, rotate options from antd image.如何从 antd 图像中删除其他编辑器图标,如缩放、取消缩放、旋转选项。 while previewing the image from Antd Image.在预览 Antd Image 中的图像时。

显示其他编辑器选项的 antd 图像预览

Use CSS to hide the icons you don't want to see.使用 CSS 隐藏您不想看到的图标。

.ant-image-preview-operations-operation:not(:first-child) {
    display: none;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM