Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
center_popup
Advanced tools
A library for creating a centered popup window
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 = { 'width': '400px', 'height': '300px' };
var popup = new Popup(document.getElementById('popup'), opts);
// Open this popup.
popup.open('custom');
// or
popup.fadeIn(0.3, 'custom');
// 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 = { 'border': '5px solid black' };
var popup = new Popup(document.getElementById('popup'), opts);
// Open this popup.
popup.open('image');
// or
popup.fadeIn(0.3, 'image');
// Close this popup.
popup.close();
// or
popup.fadeOut(0.3);
width
Type: Number
Default: 500
The popup css width.
height
Type: Number
Default: 400
The popup css height.
background
Type: color
Default: white
The popup css background setting
open(type)
Type: String
Default: image
(can only use: image
or custom
)
Display a centered popup window.
close()
Close the centered popup window.
fadeIn(seconds, type)
seconds => Type: Number
Default: 0.3
type => Type: String
Default: image
(can only use: image
or custom
)
FadeIn the centered popup window in specific time.
fadeOut(seconds)
Type: Number
Default: 0.3
FadeOut the centered popup window in specific time.
Under the MIT license.
FAQs
A library for creating a centered popup window
The npm package center_popup receives a total of 1 weekly downloads. As such, center_popup popularity was classified as not popular.
We found that center_popup demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.