@yishiashia/floating-label-input

1.0.5 • Public • Published

floating-label-input

NPM

Published on webcomponents.org

Floating label input web component.

Install

$ npm install @yishiashia/floating-label-input

Syntax

<script src="fl-input.js"></script>

<form action="#" method="POST">
    <fl-input
        name="username"
        type="text"
        placeholder="Please enter your name"
        height="50"
    >
    </fl-input>
    <fl-input
        name="username"
        type="password"
        placeholder="Please enter your password"
        height="50"
    >
    </fl-input>
    <input type="submit" value="submit" />
</form>

Demo page

The demo page: https://yishiashia.github.io/fl-input.html

Usage

If you want to customize this web component, you can import the library and implement your new class by extend FLInput.

import FLInput from "floating-label-input";

class customizedFLInput extends FLInput {
    // override here
}

Options

name

The name of input, it would be the POST parameter name.

placeholder

The floating label of input field.

height (optional)

The height of input field (unit: pixel).

type (optional)

The input type, default text.

Package Sidebar

Install

npm i @yishiashia/floating-label-input

Weekly Downloads

1

Version

1.0.5

License

MIT

Unpacked Size

155 kB

Total Files

4

Last publish

Collaborators

  • yishiashia