Web Component: j-Icons


  • Info
  • HTML
  • JS
  • CSS
  • Meta

j-Icons

  • Total.js Icons list
  • singleton

Configuration:

  • search {String} a placeholder for search field (default: Search)
  • list {String} URL address for obtaining list of icons (default: Total.js Icons CDN)
  • NEW: custom {String} a custom icon list (it uses tic ti-NAME prefix)

Usage

var opt = {};

// opt.offsetX {Number}    : adds X offset (default: 0)
// opt.offsetY {Number}    : adds Y offset (default: 0)
// opt.align {String}      : align `left` (default), `center` or `right`
// opt.position {String}   : position `top` (default) or `bottom`
// opt.empty {Boolean}     : adds empty icon (default: false)

opt.element = YOUR_ELEMENT;
// or if you want to use a fixed position:
// opt.x {Number}          : `x` position
// opt.y {Number}          : `y` position

opt.callback = function(icon) {
    console.log(icon);
};

SETTER('icons/show', opt);

Author