crmenu

1.7.4 • Public • Published

crmenu

A beautiful right-click menu,

Improved and encapsulated by the example of the original author knyttneve https://codepen.io/knyttneve/pen/YzxEBew

Install

npm install crmenu

How to use

import ContextMenu from "crmenu";
import "crmenu/style.css";

const copyIcon = `<svg viewBox="0 0 24 24" width="24" height="24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg>`;

const menuItems = [
  {
    content: () => {
      return `${copyIcon}复制`;
    },
    events: {
      click: (e) => {
        console.log(rightMenu);
        console.log(`此处被点击了`);
      },
    },
  },
];

const rightMenu = new ContextMenu({
  target: ".rigth-menu-box",
  mode: "light", // dark
  menuItems,
});

rightMenu.init();

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.7.43latest

Version History

VersionDownloads (Last 7 Days)Published
1.7.43
1.7.30
1.7.20
1.7.10
1.7.00
1.6.90
1.6.80
1.6.70
1.6.61
1.6.50
1.6.40
1.6.30
1.6.20
1.6.10
1.6.00
1.5.00
1.4.00
1.3.00
1.2.100
1.2.90
1.2.81
1.2.70
1.2.61
1.2.50
1.2.40
1.2.30
1.2.21
1.2.10
1.0.30
1.0.20
1.0.10
1.0.50
1.0.40

Package Sidebar

Install

npm i crmenu

Weekly Downloads

7

Version

1.7.4

License

none

Unpacked Size

393 kB

Total Files

40

Last publish

Collaborators

  • kamtao