All Projects → theultrasoft → Parallaxie

theultrasoft / Parallaxie

Licence: MIT license
Easiest, Responsive and Customizable Parallax jQuery Plugin

Programming Languages

HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Parallaxie

smooth-parallax
Smooth Parallax makes it a lot easier to move objects when the page scroll with ease.
Stars: ✭ 66 (+1.54%)
Mutual labels:  parallax, parallax-scrolling, parallax-javascript-library
Perspective
🖼Parallax scrolling effect. And more.
Stars: ✭ 80 (+23.08%)
Mutual labels:  parallax, parallax-scrolling, parallax-javascript-library
universal-parallax
Easy parallax plugin using pure javascript. Also works on mobile platforms. Cross browser support.
Stars: ✭ 107 (+64.62%)
Mutual labels:  parallax, parallax-scrolling, parallax-javascript-library
react-rellax
React Parallax component using Rellax.js
Stars: ✭ 39 (-40%)
Mutual labels:  parallax, parallax-scrolling, parallax-javascript-library
Cz Parallax
Simple and tiny jQuery plugin for Parallax effect.
Stars: ✭ 10 (-84.62%)
Mutual labels:  jquery-plugin, parallax
Paroller.js
Parallax scrolling jQuery plugin
Stars: ✭ 535 (+723.08%)
Mutual labels:  jquery-plugin, parallax
Parallax background
jQuery parallax background plugin based on GSAP
Stars: ✭ 30 (-53.85%)
Mutual labels:  jquery-plugin, parallax
Rallax.js
Dead simple parallax scrolling.
Stars: ✭ 1,441 (+2116.92%)
Mutual labels:  parallax, parallax-scrolling
hongkong
A parallax scroll effect plugin
Stars: ✭ 46 (-29.23%)
Mutual labels:  parallax, parallax-scrolling
FieldsLinker
Designed for matching files headers to database fields during the process importing. Allows drawing links between elements of 2 lists
Stars: ✭ 18 (-72.31%)
Mutual labels:  jquery-plugin
fixedThead
A jQuery plug-in for fixed table header
Stars: ✭ 21 (-67.69%)
Mutual labels:  jquery-plugin
jquery-slidePanel
A jquery plugin that show a slide panel on side.
Stars: ✭ 46 (-29.23%)
Mutual labels:  jquery-plugin
jquery-profile
jQuery plugin to profile calls to jQuery selectors.
Stars: ✭ 39 (-40%)
Mutual labels:  jquery-plugin
jquery-sina-emotion
一个用来方便快速地创建新浪微博表情选择对话框的jQuery插件。
Stars: ✭ 56 (-13.85%)
Mutual labels:  jquery-plugin
jqScribble
A touch enabled jquery plugin for drawing on a canvas
Stars: ✭ 72 (+10.77%)
Mutual labels:  jquery-plugin
jquery.geocomplete
A simple plugin for Google Maps Autocomplete.
Stars: ✭ 15 (-76.92%)
Mutual labels:  jquery-plugin
jquery-transfer
☑️ A jQuery plugin that is a shuttle box
Stars: ✭ 41 (-36.92%)
Mutual labels:  jquery-plugin
jQuery-Freeze-Table-Column-and-Rows
This is a jQuery plugin that can make table rows and columns not scroll. It can take a given HTML table object and set it so it can freeze a given number of columns or rows or both, so the fixed columns or rows do not scroll. The rows to be frozen should be placed in the table head section. It can also freeze rows and columns combined with using…
Stars: ✭ 20 (-69.23%)
Mutual labels:  jquery-plugin
conditionize.js
Small jQuery plugins for handling conditional form fields via data attributes. Unmaintained.
Stars: ✭ 56 (-13.85%)
Mutual labels:  jquery-plugin
jquery-svg-convert
Convert .svg images to code on the fly with jQuery
Stars: ✭ 30 (-53.85%)
Mutual labels:  jquery-plugin

Parallaxie

Parallaxie is a jQuery plugin to create parallax effects on your websites or templates. It is very lightweight to download and rendering by your browser.

Current Version:

0.5

Dependency:

This plugin has only one dependency, which is jQuery

Demo:

Watch Parallaxie in action: http://static.theultrasoft.com/parallaxie/demo/

License:

Licensed under the MIT License (LICENSE.txt)

Copyright (c) 2016 THE ULTRASOFT (http://theultrasoft.com)

Installation:

Installing this plugin is very easy. You have to include jQuery and Parallaxie scripts to your website.

<script src="js/jquery.min.js"></script>
<script src="js/parallaxie.min.js"></script>

Fire up the plugin with any css selector. You must have a background image set into that element or you can use the data-image attribute, will explain about this later. Also, make sure the parallax element must have some height or some content which has some height.

<style>
.parallaxie{
    min-height: 360px;
}
</style>
<div class="parallaxie" style='background: url("path/to/your/image.png")'></div>
<script>
$('.parallaxie').parallaxie();
</script>

View a more intutive Parallaxie example.

Options:

You can easily customized this plugin any time.

1. On initialization:

This method gives you a quick configuration option.

<script>
$('.parallaxie').parallaxie({
	speed: 0.5,
	offset: 50,
	...
	...
});
</script>

2. On declaration:

On declaration of the parallaxie element you can specify the option using the data-parallaxie attribute. This gives you to control or customize different parallaxie elements with different configurations.

<div class="parallaxie" style='background: url("path/to/your/image.png")' data-parallaxie='{
	"speed": -0.4
	"size": "auto"
}'></div>
Option Description Default
speed Speed of the parallax. You can use any floating point number. But practically, give any fractional number between -1 and 1. Example: 0.3 or -0.5 0.2
repeat Should the background repeat or not. Possible values: 'repeat', 'repeat-x', 'repeat-y', 'no-repeat' 'no-repeat'
size background size of the image. Possible values: 'auto', 'contain', 'cover' 'cover'
pos_x Position of the image horizontally. Possible values: 'left', 'center', 'right' or any percentage like: '30%' 'center'
offset The parallax offset. Possible values: Any integer. 0
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].