Create Smooth Slide-in Animations Using JQuery Plugin

Slidein is a component that uses CSS and JQUERY Animation to transfer the elements smoothly in the width, at a certain speed, and from any place.

jquery animation plugins, animate slider jquery, jquery plugin examples, jquery animation effects for websites, vertical slider jquery plugin, best jquery plugin for animation

How to make use of it:

1. Download and include the additional component JQUERY SLIDEIN after the JQUERY JAVASCRIPT library.

<script src="jquery-1.11.3.min.js"></script>
<script src="js/jquery.slideIn.js"></script>

2. Make sure to hide the element you want to slip.

#element {
  display: none;  
  ...
}

3. The plugin provides methods to slip into elements from the left/right/down/up.

$('#element').slideInLeft({

// animation speed
speed : 400,

// how far away the animation begins
distance : '100px',

// start opacity level
startOpacity : '0',

// opacity speed
opacitySpeed : 400,

});
$('#element').slideInRight({

speed : 400,
distance : '100px',
startOpacity : '0',
opacitySpeed : 400,

});
$('#element').slideInDown({

speed : 400,
distance : '100px',
startOpacity : '0',
opacitySpeed : 400,

//  Tells the animation to come from the top
comeDown: true,

// Tells the animation to come from the bottom.
comeUp: null,

});
$('#element').slideInUp({

speed : 400,
distance : '100px',
startOpacity : '0',
opacitySpeed : 400,
comeDown: null,
comeUp: true,

});
$('#element').slideInDiagonal({

speed : 400,
distance : '100px',
startOpacity : '0',
opacitySpeed : 400,

// left position
left : true,

// right position
right : null,

comeDown: null,
comeUp: null,

});

jquery plugin for element slide-in animation, SlideIn Plugin/Github, animate on scroll jquery plugin, jquery slide div on scroll


See Demo And Download

Official Website(Bensirpent07): Click Here

This superior jQuery/javascript plugin is developed by Bensirpent07. For extra advanced usage, please go to the official website.

Related Posts

jquery-fancy-file-uploader

Convert An HTML File Input Type Into a Fancy File Uploader

jQuery Fancy File Uploader is a jQuery extension for converting an HTML file input type into a portable fancy file uploader. Choose from an MIT or LGPL…

Input-Values-Using-Mouse-Drag

Create Side Sliders Input Values Using Mouse Drag | Pointer Lock

HTML Range Slider is a lightweight library to create side sliders to adjust values easily and precisely by making use of the Pointer Lock API. Side Slider…

simple-parallax-scrolling-js

Smooth and Lightweight Parallax Scroll Library in Pure Javascript

Lightweight and seamless parallax scrolling library implemented in pure javascript using hardware acceleration for additional performance. Main Features Extremely lightweight with no dependencies A few kilobytes of pure…

Convert-Form-Data-to-JSON

How to Convert Form Data to JSON with HTML Forms | FormsJS

FormsJS is a simple-to-use JavaScript library that covers type subject values to JSON in real time. The items containing the data category will be analyzed automatically. It…

editable-html-table-using-javascript

A Small jQuery Extension to Convert An Editable HTML Table

Editable Table is a small jQuery extension to convert an editable HTML table for fast data entry and validation. A small jQuery extension to convert a static…

jquery.youtube-background

Simple jQuery Plugin for Embedding YouTube Videos As Cover Background

jquery.youtube-background is a jQuery plugin built to facilitate YouTube embeds as cover wallpaper using the YouTube Embed API. There is another jQuery Youtube Video Background plugin that…