/* * helium-parallax v2.2 * Developed by Harun eggleton - Under MIT License * jquery 1.11.0 * jQuery Boilerplate - v3.3.1 ( http://jqueryboilerplate.com ) - Made by Zeno Rocha - Under MIT License */ ;(function ( $, window, document, undefined ) { // Create defaults var pluginName = "heliumParallax", defaults = { paraStart: 200, // distance from the origin that parallax scroll effect will start paraEnd: 200, // distance from the origin that parallax scroll effect will end property: ['top'], // css property (or properties) to animate minVal: ['-150px'], // minimum value for css property maxVal: ['150px'], // maximum value for css property valTemplate: [false],// template for complex css values. The *value* should be placed where the number should be placed. ie "rotate(*value*deg)" relate: ['linear'] // relationship to scroll movement : linear, reverse, swing, reverseSwing }, priv = { currTop: false, currCenter: false, currPercent: false, startPoint: false, endPoint: false, itemTop: false, itemCenter: false, item: false, winHeight: false, newVal: false, valUnit: false }; function Plugin ( element, options ) { this.element = element; // use extend to merge contents of defaults, user options, and private variables this.vars = $.extend( {}, defaults, options, priv ); this._defaults = defaults; this._priv = priv; this._name = pluginName; this.init(); } Plugin.prototype = { //============================================================================ // Init function (All initial logic goes here) //============================================================================ init: function () { var orig = this; orig.vars.valUnit = []; for (var i = 0; i this.vars.endPoint){ this.vars.currCenter = this.vars.endPoint; } for (var i = 0; i