0.0.13 • Published 5 years ago

gliojs-2 v0.0.13

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

glio

What is new in this version 2

  • CommonJs support
  • Cookie support with optional expiry date
  • Set a timed delay before the script starts tracking exit intent.

Reasons for use

  • Increase your conversion rates!
  • Give visitors reasons to stay!
  • Grab your users’ attention!

Articles about Exit-popups

  • 7 Best Practices for Using Exit-Intent Popovers, Popups
  • 5 Scientific Reasons Exit Popups Are So Freaking Effective

Install

  • Npm: npm install gliojs-2

Usage

The arguments are a Arrays, where the first index is the direction and the second is a callback.

glio( [ direction, callback ] );

5 Directions

  • top
  • top-left
  • top-right
  • bottom-left
  • bottom-right

Example

  • top-left and top-right
    glio.init(
      [ 'top-left', function () {
          alert('this is top-left');
        }
      ],
      [ 'top-right', function () {
          alert('this is top-right');
        }
      ]
    );
  • all directions
  glio.init(
    [ 'top', function () {
        alert('this is top.');
      }
    ],
    [ 'top-left', function () {
        alert('this is top-left');
      }
    ],
    [ 'top-right', function () {
        alert('this is top-right');
      }
    ],
    [ 'bottom-left', function () {
        alert('this is bottom-left');
      }
    ],
    [ 'bottom-right', function () {
        alert('this is bottom-right');
      }
    ]
  );

Configurations

  • glio.config.key = value; Set the configuration before the init.
  • screenWidthFragment: the quantity of parts the height and width screen will be divided. Default: 12.
  • centerTopHeight: height of 'top' direction. When the mouse is equal or major this value, the callback is triggered. Default: 10.
  • heightTopLeft: height of 'top-left' direction. When the mouse is equal or major this value, the callback is triggered. Default: 30.
  • heightTopRight: height of 'top-right' direction. When the mouse is equal or major this value, the callback is triggered. Default: 30.
  • cookiesExpiration: the value in day of the expiration of cookie. Default: 30.
  • delay: the value in seconds of delay. Default: 0

This software is licensed under the MIT License.

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago