Gathering detailed insights and metrics for jquery-wobblewindow-plugin
Gathering detailed insights and metrics for jquery-wobblewindow-plugin
Gathering detailed insights and metrics for jquery-wobblewindow-plugin
Gathering detailed insights and metrics for jquery-wobblewindow-plugin
Wobble Window is a fancy jQuery plugin that helps you create a cool, interactive, configurable, HTML5 canvas based gooey effect when the mouse moves in/out a specified element.
npm install jquery-wobblewindow-plugin
Typescript
Module System
Node Version
NPM Version
HTML (62.93%)
JavaScript (37.07%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
18 Stars
18 Commits
10 Forks
2 Watchers
1 Branches
1 Contributors
Updated on Jun 22, 2024
Latest Version
1.0.3
Package Id
jquery-wobblewindow-plugin@1.0.3
Size
13.12 kB
NPM Version
3.3.12
Node Version
5.5.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
No dependencies detected.
(jquery-wobblewindow-plugin)
Wobble Window is a fancy jQuery plugin that helps you create a cool, interactive, configurable, HTML5 canvas based gooey effect when the mouse moves in/out a specified element.
install it through npm:
npm i jquery-wobblewindow-plugin
1<div id='window'> 2 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce ac elementum tortor, eget efficitur quam. Quisque eu erat dui. Etiam ut mauris at dui feugiat eleifend id vel arcu. Praesent commodo orci quis scelerisque congue. Cras ac mauris quam. Nunc ipsum tortor, lobortis et arcu et, imperdiet maximus massa. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Ut aliquam pretium augue. 3</div>
1#window { 2 width:350px; 3 height:350px; 4 left:65px; 5 top:65px; 6 position:absolute; 7 padding: 50px 50px 50px 50px; 8 pointer-events: none; 9 box-sizing: border-box; 10}
1$( '#window' ).wobbleWindow();
With parameters:
1var settings = { 2 3 name: 'my_window',//name 4 depth: 1,//depth for zIndex 5 offsetX: 0,//+ or - value the size of the div 6 offsetY: 0,//+ or - value the size of the div 7 moveTypeIn: 'move',//method points follow the mouse 8 moveTypeOut: 'wobble',//method points go back to init position 9 wobbleFactor: 0.9,//control the wobble effect 10 wobbleSpeed: 0.1,//control the wobble speed 11 moveSpeed: 3,//control the move speed 12 lineWidth: 1,//lineWidth 13 lineColor: '',//no value = no line. Use hex/rgba values 14 bodyColor: '#FFF',//no value = no body color. Use hex/rgba values 15 numberOfXPoints: 7,//quantity of points horizontal. must be an odd int 16 numberOfYPoints: 5,//quantity of points vertical. must be an odd int 17 movementLeft: true,//enable/disable movement directions 18 movementRight: true,//enable/disable movement directions 19 movementTop: true,//enable/disable movement directions 20 movementBottom: true,//enable/disable movement directions 21 autoResize: true,//if true size will be automatically adjusted 22 autoResize: true,//enable/disable automatic size adjustement 23 debug: false//enable/disable debug mode 24 25};
1$( '#window' ).wobbleWindow( settings );
1var wobbleWindow = new WobbleWindow( document.getElementById( 'window' ) );
With parameters:
1var wobbleWindow = new WobbleWindow( document.getElementById( 'window' ), settings );
This plugin is available under the MIT license.
– Niklas
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
Found 0/18 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More