This package has been deprecated

Author message:

no longer actual

early.js

0.1.2 • Public • Published

early.js

A JS bundle to be included first.

early.js

Purpose

This bunch of third‒party JS libraries is meant to be included first in your HTML markup and helps to:

  • detect user device,
  • detect browser capabilities,
  • conditionally load other JS scripts,
  • add user device and browser info to your stats,
  • trigger your code on particular events.

Attention

When using CDN version, external links will be opened in new tabs, and user OS and browser info gets added to document title.

You can safely remove lines of code, that are responsible for this behaviour, and load modified script locally.

npm Install

npm install early.js

bower Install

bower install early.js

Setup

This should be included before loading jQuery, its pluguins, or any other JS library.

<script src="early.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/yepnope/1.5.4/yepnope.min.js"></script>
<script>
	yepnope.injectJs("//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js", function () {
        ("undefined" !== typeof earlyIsMobileBrowser && earlyIsMobileBrowser) || yepnope.injectJs("//cdn.jsdelivr.net/parallax/1.1.1/jquery.parallax.min.js", function () {
            (function (b, a) {
                b && a && a.parallax()
            })($.fn.parallax || "", $("#scene1") || "");
        }, {
            charset : "utf-8"
        }, 5E3);
    }, {
        charset : "utf-8"
    }, 5E3);
</script>

The following third-party libraries are included in the bundle:

  • Modernizr — a JavaScript library that detects HTML5 and CSS3 features in the user’s browser (cssanimations, generatedcontent, cssgradients, csstransforms, csstransforms3d, csstransitions, hashchange, audio, video, svg, touch, shiv, mq, cssclasses, prefixed, teststyles, testprop, testallprops, prefixes, domprefixes, load)
  • Detectizr — a Modernizr extension to detect device, device model, screen size, operating system, and browser details
  • addEvent() — a cross-browser addEvent solution
  • domready — lets you know when the DOM is ready
  • Detect Mobile Browsers — open source mobile phone detection (returns true or false instead of redirection)

The bundle initializes the following variables:

var earlyDeviceType String  ["tv", "tablet", "mobile", "desktop"]
var earlyDeviceModel    String  ["smartTv", "gameConsole", "ipad", "android", "kindle", "blackberry", "crawler"]
var earlyDeviceOrientation  String  ["portrait", "landscape"]
var earlyBrowser    String  ["chrome", "firefox", "ie", "iron", "konqueror", "opera", "safari"]
var earlyBrowserVersion String
var earlyBrowserEngine  String  ["gecko", "presto", "trident", "webkit"]
var earlyOs String  ["ios", "android", "blackberry", "windows", "mac", "webtv", "linux", "sun", "irix", "freebsd", "bsd"]
var earlyOsVersion  String  ["ios", "8", "8.1", "8", "7", "vista", "xp", "2k", "nt", "98", "95", "68k", "ppc", "os x"]
var earlyFnGetYyyymmdd  String  "YYYY-MM-DD"
var earlyIsMobileBrowser    Integer [1:!1]
var earlyDocumentReferrer   String
var earlyWindowLocation String
var earlySelfLocationHost   String
var earlyDevicePixelRatio   Number
var earlyDeviceWidth    Number
var earlyIsRetina   Integer [1:""]
var earlyHasCssgradients    Integer [1:""]
var earlyHasTouch   Integer [1:""]
var earlyDeviceHeight   Number
var earlyDocumentTitle  String

Copyright

Icon made by Stephen Hutchings is licensed under CC BY 3.0

© englishextra.github.com, 2015

Readme

Keywords

none

Package Sidebar

Install

npm i early.js

Weekly Downloads

0

Version

0.1.2

License

MIT

Last publish

Collaborators

  • englishextra