Coder Social home page Coder Social logo

theme1256 / nucontextmenu Goto Github PK

View Code? Open in Web Editor NEW

This project forked from avxto/nucontextmenu

0.0 1.0 0.0 36 KB

Modern context menu with font awesome support for web apps (jQuery Plugin). If you found this useful please give a star!

Home Page: http://avxto.github.io/nuContextMenu

License: MIT License

HTML 33.22% JavaScript 56.57% CSS 10.21%

nucontextmenu's Introduction

nuContextMenu

A modern context menu with font awesome support for web apps. The script is extremely light weight (2.2 kB), and it treats the menu as the primary object. This means that a single menu can be attached to multiple elements.

Installation

Use npm

npm i jquery-nucontextmenu

or include the following files from the src-foler

<script type="text/javascript" src="path/to/src/jquery.nu-context-manu.js"></script>
<link rel="stylesheet" href="path/to/src/nu-context-menu.css"/>

Remember, that you should include FontAwesome and jQuery before this plugin.

Code Example

$(function() {
  var context = $('#node')
    .nuContextMenu({

      hideAfterClick: true,

      items: '.demo-item',

      callback: function(key, element) {
        alert('Clicked ' + key + ' on ' + $(element)
          .attr('id'));
      },

      menu: [
        {
          name: 'archive',
          title: 'Archive',
          icon: 'archive',
        },
        {
          name: 'mark',
          title: 'Mark as read',
          icon: 'check',
        },
        {
          name: 'void'
        },
        {
          name: 'delete',
          title: 'Delete',
          icon: 'trash',
        },
      ]

    });

  // Disable context menu
  // context.nuContextMenu('disable');

  // Remove context menu
  // context.nuContextMenu('destroy');

});

Guide

Initialize the context menu and store it as a variable. Here #node is the parent item, containing all the elements with a custom context menu.

var context = $('#node').nuContextMenu({
  ...
});

The elements with the custom context menu is set by adding the following atribute inside the .nuContextMenu. This will set the element type or class, that will have the custom context menu.

items: '.demo-item'

To set what elements are in the context menu set the following atribute.

menu : []

Inside menu, create an object with the following structure.

{
  name: '',
  title: '',
  icon: ''
}

Where name sets the name used when using callback, title is the text that is written in the menu and icon is the name of the font-awesome icon(without the fa-).

To setup callback set the following atribute.

callback: function(key, element) {}

This will be called on all clicks on elements in the context menu. The value key is the value name from the menu and element is the element, originally right clicked on, as a jQuery element.

Screenshots

![Screenshot] (https://cloud.githubusercontent.com/assets/13611918/10264217/117b0946-69d3-11e5-8914-e00c391065e1.png)

License

The MIT License (MIT)

Copyright (c) 2015 Alex Suyun

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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.