wc-mic-input
v1.0.2
Published
Speech input WebComponent implemented with Web Speech API.
Downloads
2
Maintainers
Readme
wc-mic-input
Speech recognition input web component.
Install
$ npm install wc-mic-input
Syntax
<script src="mic-input.js"></script>
<form action="#" method="POST">
<label for="mic-input">Enter something:</label>
<mic-input height="36"></mic-input>
<input type="submit" value="submit" />
</form>
Demo page
The demo page: https://yishiashia.github.io/mic-input.html
Usage
If you want to customize this web component, you can import the library and
implement your new class by extend MicInput
.
import MicInput from "wc-mic-input";
class customizedMicInput extends MicInput {
// override here
}
Options
name (optional)
The name of input, it would be the POST parameter name.
height (optional)
The height of input field.