New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

apoc-modal

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apoc-modal

Modal

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
decreased by-60%
Maintainers
1
Weekly downloads
 
Created
Source

ApocModal

npm: apoc-modal CircleCI: nju33/apoc-modal Coverage Status tested with jest code style: prettier license: mit

screenshot

Install

yarn add apoc-modal
npm i apoc-modal

Demo

https://nju33.github.io/apoc-modal/

Usage

<!-- Elements that catch events -->
<button id="trigger">...</button>

<!--
  Put the modal element.
  Specify `width`, `height` and `display:none` in CSS.
-->
<div id="modal" style="width:300px;height:250px;display:none">...</div>

<!-- When reading by itself -->
<script src="/path/tp/apoc-modal.js"></script>
// es
import ApocModal from 'apoc-modal';

const modal = new ApocModal(
  document.getElementById('modal'),
  {
    // options

    // default
    type: ApocModal.types.SLIDE_UP,
    // There are other types like this
    // - 'simple',
    // - 'slide-up',
    // - 'slide-bottom',
    // - 'slide-left',
    // - 'slide-right',
    // - 'spin-reverse'
    // - 'spin'
    // - 'flip'
    // - 'flip-x'
    // - 'peek'
    // - 'focus'

    bottom: '50%',
    right: '50%',

    // The `transition-timing-function` value of css attached
    // to all relevant elements
    // default (easeInOutQuad)
    // ref: http://easings.net/
    transitionTimingFunction: 'cubic-bezier(0.455, 0.03, 0.515, 0.955)',

    // The `transition-duration` value of css attached
    // to all relevant elements
    // default
    transitionDuration: '.2s',

    // Wall background color
    // default
    wallBackgroundColor: 'rgba(0,0,0,.3)'
  }
);

document.getElementById('trigger').addEventListener('click', () => {
  if (modal.isOpen()) {
    modal.close();
  } else {
    modal.open();
  }
});

setTimeout(() => {
  // Delete events
  modal.teardown();
}, 999999)

LICENSE

The MIT License (MIT)

Copyright (c) 2018 nju33 nju33.ki@gmail.com

Keywords

FAQs

Package last updated on 27 Dec 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc