All Projects → mebjas → jquery-digitalwrite

mebjas / jquery-digitalwrite

Licence: MIT license
jquery plugin to write charecters in digital format in a 5x5 matrix

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to jquery-digitalwrite

vidbacking
vidbacking is a jQuery plugin to create HTML5 / Youtube video as background on webpage with fallback image support. It supports mp4 and webm files as well as Youtube video.
Stars: ✭ 55 (+129.17%)
Mutual labels:  jquery-plugin
ajxnetcore
Its an innovative method to turn an ASP.NET Core Application Into Single Page Application, While enhancing the Software performance both on server and client side.
Stars: ✭ 31 (+29.17%)
Mutual labels:  jquery-plugin
jquery-asPieProgress
A jQuery plugin that animate the pie progress.
Stars: ✭ 41 (+70.83%)
Mutual labels:  jquery-plugin
Hashtegny
jQuery Plugin aggregates hashtags from different social media networks. Posts are displayed in a unique, & attractive grid, and animated layout.
Stars: ✭ 52 (+116.67%)
Mutual labels:  jquery-plugin
Timespace
A jQuery plugin to handle displaying of time events
Stars: ✭ 27 (+12.5%)
Mutual labels:  jquery-plugin
jquery.peekABar
jQuery plugin for a Notification Bar
Stars: ✭ 59 (+145.83%)
Mutual labels:  jquery-plugin
jquery-tree
jQuery-tree is a jQuery plugin to make an HTML unorder list (ul) in a tree.
Stars: ✭ 29 (+20.83%)
Mutual labels:  jquery-plugin
NoobScroll
A lightweight jQuery Plugin that add some cool function to make scrolling more fun [Archive]
Stars: ✭ 43 (+79.17%)
Mutual labels:  jquery-plugin
rellax
jQuery Rellax Plugin - Parallax awesomeness
Stars: ✭ 14 (-41.67%)
Mutual labels:  jquery-plugin
jquery-smarty
jQuery Smarty Plugin (jQSmarty) is a port of the Smarty Templating Engine to Javascript/jQuery, offering a familiar client-side templating solution
Stars: ✭ 18 (-25%)
Mutual labels:  jquery-plugin
ripple-effect-click
Add ripple effect to any element you want when the click action happens ("ripple effect")
Stars: ✭ 15 (-37.5%)
Mutual labels:  jquery-plugin
jquery-google-reviews
simple jquery Plugin that utilizes Google API to get data from a Place on Google Maps
Stars: ✭ 33 (+37.5%)
Mutual labels:  jquery-plugin
international-telephone-input
Integration to Magento 2 a jQuery plugin for entering and validating international telephone numbers.
Stars: ✭ 26 (+8.33%)
Mutual labels:  jquery-plugin
readingbar
A simple progress bar that indicates the length & your current reading position of an article/page
Stars: ✭ 19 (-20.83%)
Mutual labels:  jquery-plugin
emulatetab
A jQuery plugin to emulate tabbing between elements on a page.
Stars: ✭ 15 (-37.5%)
Mutual labels:  jquery-plugin
jquery-jside-menu
jSide Menu is a well designed, simple and clean side navigation menu with dropdowns.
Stars: ✭ 23 (-4.17%)
Mutual labels:  jquery-plugin
jquery-bindings
Simple two-way data binding using proxies and requestIdleCallback
Stars: ✭ 17 (-29.17%)
Mutual labels:  jquery-plugin
jquery-lightbox
A jQuery plugin, inspired and based on Lightbox 2 by Lokesh Dhakar
Stars: ✭ 22 (-8.33%)
Mutual labels:  jquery-plugin
scrollbox
A lightweight jQuery custom scrollbar plugin, that triggers event when reached the defined point.
Stars: ✭ 15 (-37.5%)
Mutual labels:  jquery-plugin
animationCounter.js
animationCounter.js is a jQuery plugin that animates a number from a value to another value or to an infinite value
Stars: ✭ 18 (-25%)
Mutual labels:  jquery-plugin

digitalwrite jQuery plugin

todofy badge

jQuery plugin to write charecters in digital format in a 5x5 matrix.

Using this plugin, you can create such charecters with animations, color options & size options! In future it may enable you to transform one charecter to another - that should be kinda cool!

Live Demo & more information - minhazav.dev

Its live on: https://blog.minhazav.dev/research/jquery-digital-write

How to use: (Read More)

  • Create a div
<div id="M_Placeholder"></div>
  • Include jQuery and this library and in js
$("#M_Placeholder").digitalwrite({char: 'M'});

This will create a 5X5 digital M with width = 100px & height = 500px, in black color. These properties can be customised as follows:

char - (required) Charecter to print, (A-Z, '.', '!') supported
height - height of the charecter in px
width - width of the charecter in px
background - background color of the blocks, ex red, rgba(255, 0, 0, 1)
border - border property of the blocks, ex 1px solid red, 2px dotted black
animation - how the blocks animate to form the charecter at the end. Categories are: none, motion, spiral, contract & fade of these spiral & fade are experimental and buggy!
success - (function) callback called when charecter has been printed on screen
timeout - control speed of animation, value in ms, 500, default

So if we use everything it would look something like

$("#M_Placeholder").digitalwrite({
    char: 'M',
    height: 120,
    width: 120,
    background: 'rgba(0, 0, 0, .1)',
    border: '1px dased black',
    animate: 'contract',
    success: function() {
        console.info('Charecter M ready');
    }
});

You can also convert a text to other text!

$("#M_Placeholder").transformTo('K', function() {
  console.info('successfully transformed to K');  
});

Image M will transform to Image K with animation!

For more information view documentation

Animations

Different possible animations are: none, motion, spiral, contract & fade screenshot

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].