Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

center_popup

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

center_popup

A library for creating a centered popup window

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
increased by100%
Maintainers
1
Weekly downloads
 
Created
Source

center-popup.js

A library for creating a centered popup window

Usage

As a native plugin:

// 1. Use for type "custom"

// define the html element to use
<div id="popup">Hello World</div>

// custom's opts sets the target choose for creating instance(which is ID popup element)
var opts = { target: '#popup', type: 'custom' };
var popup = new Popup(document.getElementById('popup'), opts);

// Open this popup.
popup.open();
// or
popup.fadeIn(0.3);

// Close this popup.
popup.close();
// or
popup.fadeOut(0.3);



// 2. Use for type "image"

// define the html element to use
<div id="popup" data-src="./example.jpg">Hello World</div>

// custom's opts sets the image's style(also can be set by default class is 'popup_image')
var opts = { target: '#popup', type: 'image' };
var popup = new Popup(document.getElementById('popup'), opts);

// Open this popup.
popup.open();
// or
popup.fadeIn(0.3);

// Close this popup.
popup.close();
// or
popup.fadeOut(0.3);

Options(CSS3)

  • target

    Type: String

    set for target's dom name, eg. '#popup'

  • type

    Type: String Value: custom or image

    choose type of the popup window, now only support 'custom' & 'image'.

Methods

  • open()

    Type: String

    Display a centered popup window.

  • close()

    Close the centered popup window.

  • fadeIn(seconds)

    Type: Number Default: 0.3

    FadeIn the centered popup window in specific time.

  • fadeOut(seconds)

    Type: Number Default: 0.3

    FadeOut the centered popup window in specific time.

License

Under the MIT license.

Keywords

FAQs

Package last updated on 30 May 2019

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