com.jwebmp.plugins.textinputeffects.inputs.set1.MinoruInput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-text-input-effects Show documentation
Show all versions of jwebmp-text-input-effects Show documentation
The JWebSwing implementation for the Text Input Effects collection
package com.jwebmp.plugins.textinputeffects.inputs.set1;
import com.jwebmp.core.base.html.Input;
import com.jwebmp.core.base.html.Label;
import com.jwebmp.core.base.html.Span;
import com.jwebmp.core.plugins.ComponentInformation;
/**
* Creates a haruki input style
*/
@ComponentInformation(name = "Minoru Input Effect",
description = "A very nice effect for inputs",
url = "https://tympanus.net/Development/TextInputEffects/index2.html")
public class MinoruInput
extends Set1InputEffect
{
/**
* Creates a new haruki styled input
*
* @param input
* @param label
* @param content
*/
public MinoruInput(Input input, Label label, Span content)
{
super("minoru", input, label, content);
}
}