A tiny (1kb minified) javascript plugin that automatically stylizes the native input field.
npm i input-file
<html lang="en">
<head>
<link rel="stylesheet" href="../input-file.css">
</head>
<body>
<input type="file" name="files" multiple>
<script src="../input-file.min.js"></script>
<script>
new InputFile({
// options
});
</script>
</body>
</html>
| Property | Default | Description |
|---|---|---|---|
| buttonText
| 'Choose files' | Label for the button |
| hint
| 'or drag and drop files here' | Help text |
| message
| 'files chosen' | Message shown after selecting files |