Skip to content

🦉The jQuery plugin "Stick to me" allows you to create exit-popups on your web page, so you can capture visitors just as they are about to leave.

Notifications You must be signed in to change notification settings

guiassemany/stick-to-me

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🦉The "Stick to me" plugin allows you to create exit-popups on your web page, so you can capture visitors just as they are about to leave. It is now fully compatible with modern JavaScript frameworks and libraries, with no jQuery dependency.

How it Works

Stick-to-me tracks the user mouse movement and detects when to trigger the popup. See it in action on gif below.


Table of Contents

Installation

You can install this package through npm

npm install stick-to-me

-- OR --

Just download the zip file and extract on your assets folder.

Usage

1 - Include CSS and JS files on your project

	<!-- stick-to-me -->
	<link rel="stylesheet" type="text/css" href="path/to/stick-to-me.css">
	<script src="path/to/stick-to-me.js"></script>

2 - Write your popup markup

<div id="stickLayer" style="display:none;" class="stick_popup">
	<div class="stick_close">&times;</div>
	<div class="stick_content">
	    <h1>Hello! I got your attention!</h1>
	</div>
</div>

3 - Initialize the plugin and specify the id of your popup

<script>
	document.addEventListener('DOMContentLoaded', function() {
		const stickToMeInstance = stickToMe({
			layer: '#stickLayer'			
		});

		// Add event listener to close button
		document.querySelector('.stick_close').addEventListener('click', stickToMeInstance.close);
	});
</script>

Customisation

Stick to me allows a few customisations. See options below.

Property Description default
layer Selector of your popup html empty
fadespeed Controls the speed of the fade animation 400
trigger Where detection of exit intent takes place top
delay Delay before showing popup when exit intent is detected 0
interval Interval between popups 0
maxamount Maximum times the popup will be triggered 0 = unlimited
cookie Set cookie to prevent opening again on the same browser false
cookieExpiration Define the cookie expiration in seconds (if set cookie to true) none (will save the cookie as session cookie)
bgclickclose Clicking on background closes the popup true
escclose pressing ESC closes the popup true
onleave function to be called when popup closes empty fn
debug Enable Debug mode to display console messages false

Debug Mode

The Stick to Me plugin includes a Debug mode that provides helpful console messages to understand the plugin's behavior. When Debug mode is enabled, you will see messages related to tracking movement, detecting intent, indicating direction, and firing the popup.

To enable Debug mode, set the debug option to true when initializing the plugin:

const stickToMeInstance = stickToMe({
    layer: '#stickLayer',
    debug: true
});

When Debug mode is ON, console messages will be displayed to help you understand what is happening. When Debug mode is OFF, no console messages will be shown.

Support

If you need help, reach out to me at one of the following places!

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Postcardware

You're free to use this package, but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using.

Our address is: Rua Dias de Toledo, 91, Vila da saúde, São Paulo / SP - Brazil.

Donations

Buy Me A Coffee

License

License

Credits

About

🦉The jQuery plugin "Stick to me" allows you to create exit-popups on your web page, so you can capture visitors just as they are about to leave.

Topics

Resources

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •