npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

firma-input

v1.0.1

Published

Captura de la firma a mano alzada con un input de type firma

Downloads

5

Readme

npm Install:

  • npm install firma-input

o

  • npm i firma-input

importacion

// Using Node.js require()

  • require('./node_modules/firma-input/firma.js');

// Using ES6 imports

  • import './node_modules/firma-input/firma.js';

Nota

Para el caso de NPM por el momento se llama de esta forma, ya que no encontré como hacer llamadas de archivos que se autoejecutan, ya que este es un archivo autoejecutable

DEMO

Descripción técnicas:

Para poder implementarlo se necesita del archivo firma.js, para importarlo a tu página:

  • <script src="firma.js"></script>

ó

  • <script src="https://liontumbler.github.io/firma/firma.js"></script>

ó

  • import 'https://liontumbler.github.io/firma/firma.js';
  • import 'firma.js';

Nota:

Recuerda siempre hacer esta importación después del llamado de todas las librerías que necesites, ya que si la pones de primeras se ejecutaría de primeras y no alcanzaría a ver los cambios que causen tus archivos js, en caso de que necesites que se ejecuten antes de hacer la creación de la firma, de todas maneras prueba y mira donde te puede quedar mejor.

Ya para poder implementarlo crea en tu HTML crea una etiqueta de tipo input con el type firma y obviamente su id para capturar su valor o estado:

  • <input type="firma" id="xxx6">

Eso es todo!, para poder recoger la firma, vasta solo como se hace en los input por lo general en con .value:

  • document.getElementById('xxx6').value;

Puedes limpiar la firma:

  • document.getElementById('xxx6').limpiarFirma();

Descargar imagenes a PNG JPEG SVG, el nombre no es requerido

  • document.getElementById('xxx6').toPng(nombreArchivo);
  • document.getElementById('xxx6').toJpeg(nombreArchivo);
  • document.getElementById('xxx6').toSvg(nombreArchivo);

entre otro metodos que te pueden ser utiles:

Agrega texto a la firma

  • document.getElementById('xxx6').agregarTextos(text = null, text2 = null)
    text = string text2 = string

Muestra u ocula segun mostrar

  • document.getElementById('xxx6').show(mostrar)
    mostrar= bolean

Enfoca

  • document.getElementById('xxx6').focus()

Desenfocar

  • document.getElementById('xxx6').blur()

Deshacer camnbios del trazo

  • document.getElementById('xxx6').deshacer()

Valida si es valida la firma

  • document.getElementById('xxx6').esValido()

Bloquea la firma (input)

  • document.getElementById('xxx6').bloquear()

tambien puedes usarlo:

    <div>
        <!--label for="xxx">campo firma1:</label-->
        <input type="firma" id="xxx" cuadricula="true" guia="true"  lineaNegraImagen="true" text1="Edwin Velasquez Jimenez" text2="Creador de la libreria">
     </div>

    <div>
        <label for="xxx2">campo firma2:</label>
        <input type="firma" id="xxx2" cuadricula="false" guia="true"  lineaNegraImagen="true" text1="Edwin Velasquez Jimenez" text2="Creador de la libreria">
    </div>

    <div>
        <label for="xxx3">campo firma3:</label>
        <input type="firma" id="xxx3" cuadricula="true" guia="false" lineaNegraImagen="true"  text1="Edwin Velasquez Jimenez" text2="Creador de la libreria" TextMarcaAgua="Marca Registrada">
    </div>

    <div>
        <label for="xxx4">campo firma4:</label>
        <input type="firma" id="xxx4" cuadricula="false" guia="false" lineaNegraImagen="false"  text1="Edwin Velasquez Jimenez" text2="Creador de la libreria" TextMarcaAgua="Edwin Velasquez Jimenez">
    </div>

    <div>
        <label for="xxx5">campo firma5:</label>
        <input type="firma" id="xxx5" cuadricula="false" guia="false" lineaNegraImagen="false">
    </div>

    <div>
        <label for="xxx6">campo firma6:</label>
        <input type="firma" id="xxx6" gruesoLinea="6" TextMarcaAgua="Marca">
    </div>