Get started with fancyInput CDN

MIT licensed

JQuery plugin: FancyInput enhances standard inputs with custom, stylish interfaces.

Tags:
  • input
  • effects
  • css3
  • animation
  • form

Stable version

Copied!

How to start using fancyInput CDN


<!DOCTYPE html>
<html>
<head>
  <title>Get started with fancyInput CDN - cdnhub.io</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancyinput/1.2.0/css/fancyinput.min.css" />
  <script src="https://cdn.cdnhub.io/fancyInput/1.2.0/fancyInput.min.js"></script>
</head>
<body>
  <div class="form-group">
    <label for="exampleInput">Example input:</label>
    <input type="text" id="exampleInput" class="form-control fancy-input" data-type="text" />
  </div>

  <div class="form-group">
    <label for="exampleEmail">Example email input:</label>
    <input type="email" id="exampleEmail" class="form-control fancy-input" data-type="email" />
  </div>

  <div class="form-group">
    <label for="examplePassword">Example password input:</label>
    <input type="password" id="examplePassword" class="form-control fancy-input" data-type="password" />
  </div>

  <script>
    document.addEventListener("DOMContentLoaded", function() {
      new FancyInput(document.querySelectorAll(".fancy-input"));
    });
  </script>
</body>
</html>
Copied!
Copied!
Copied!
Copied!

All versions