GithubHelp home page GithubHelp logo

quick-toolbar's Introduction

quick-toolbar

experimental

preview

Create a quick and dirty toolbar for rapid prototyping

Usage

NPM

Here are three ways you can create toolbar buttons:

var quickToolbar = require('./..');

var toolbar = quickToolbar();
var btnEl;

// dropping element html
toolbar.add('<div>M</div>')
.on('selected', function() {
  console.log('selected m');
})
.on('unselected', function() {
  console.log('unselected m');
});

// creating a toolbar button from a String
toolbar.addFromText('R')
.on('selected', function() {
  console.log('selected r');
})
.on('unselected', function() {
  console.log('unselected r');
});

// creating a toolbar button from an HTMLElement
btnEl = document.createElement('div');
btnEl.innerHTML = 'NA';

toolbar.add(btnEl)
.on('selected', function() {
  console.log('selected na');
})
.on('unselected', function() {
  console.log('unselected na');
});

Constructing quickToolbar()

You can pass in a couple of options when constructing a quick-toolbar.

quickToolbar({
    // this is the parent container that the quick-toolbar will be made in
    container: document.body,

    // this is the css that will be applied to the quick toolbars elements
    // if css === undefined then the following properties are used
    // if css === false then NO inline css is applied through JS
    css: {
        '.itemContainer': {
          display: 'block',
          width: '40px',
          height: '40px',
          overflow: 'hidden',
          position: 'relative',
          cursor: 'pointer',
          background: '#EEE',
          margin: '1px',
          color: '#555',
          'font-family': 'Arial, sans-serif'
        },

        '.item': {
          position: 'absolute',
          left: '50%',
          top: '50%',
          transform: 'translate(-50%, -50%)',
          '-webkit-touch-callout': 'none',
          '-webkit-user-select': 'none',
          '-khtml-user-select': 'none',
          '-moz-user-select': 'none',
          '-ms-user-select': 'none',
          'user-select': 'none'
        },

        '.selected': {
          border: '1px solid #F00'
        },

        '.unselected': {
          border: '1px solid transparent'
        }
    }
});

License

MIT, see LICENSE.md for details.

quick-toolbar's People

Contributors

mikkoh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.