我可以向您展示我为隐藏标准文件输入所做的工作,并显示自定义图像并使用自定义标签作为文件名,因此您可以隐藏它、更改文本等。
我有一个 BlazorInputFile 的包装器组件,其中包含隐藏标准输入、显示按钮或其他图像以及绑定变量以显示文件名的选项:
<FileUpload CustomSuccessMessage="Your file uploaded successfully." OnChange="OnFileUploaded"
OnReset="OnReset" ResetButtonClassName="localbutton"
ShowStatus="false" PartialGuidLength="10" MaxFileSize=@UploadLimit FilterByExtension="true"
ShowCustomButton="true" ButtonText="Start" CustomButtonClassName="startbutton"
AllowedExtensions=".jpg;.png;" ShowResetButton="false"
CustomExtensionMessage="Only .jpg and .png files are allowed."
AppendPartialGuid="true" InputFileClassName="customfileupload"
FileTooLargeMessage=@FileTooLargeMessage>
</FileUpload>
[Parameter] public EventCallback<string> OnReset { get; set; }
在我的 CSS 中,我隐藏了这样的输入文件,这在 Edge 上不起作用,正在处理它:
这是 CustomButtonClassName,它使用我的开始图像:
CustomButtonClassName="startbutton"
.startbutton
{
position: fixed;
background-color: transparent;
border: 0px;
outline: none;
background-image: url('../images/StartButton.png');
background-repeat: no-repeat;
top: 36vh;
left: 50%;
width: 28%;
height: 28%;
background-size: 100%;
margin-left: -14%;
cursor: pointer;
}
.customfileupload
{
display: inline-block;
cursor: pointer;
height:48px;
min-height: 48px;
visibility: hidden;
display: none;
position: fixed;
left: 0px;
top: 0px;
}
input[type=file], /* FF, IE7+, chrome (except button) */
input[type=file]::-webkit-file-upload-button
{
cursor: pointer;
display: none;
visibility: hidden;
}
最终结果是我的上传按钮如下所示:
如果它可以帮助任何人,完整的源代码和示例项目在这里:
https://github.com/DataJuggler/BlazorFileUpload
Nuget:DataJuggler.Blazor.FileUpload