GreenSock Animation Platform for Web Front End

0
5048
Advertisement

Web front end is one of the most important parts to attract audience. It is very important to have a nice and attractable front end; web interfaces; which describe the target of your website, web application or mobile app. Web front end has many new different ways to make it attractable.

Animation is one of today’s best front end technologies. When you have your web front end animated, your website can be highly attractive.

Web Front End GSAP

Animation with code may seem hard at first, but after taking a look at this library you will have the encourage to start a new very needed trend in web design. GreenSock Animation Platform was made to make it simple and intuitive. This platform is highly optimized for performance and unprecedented flexibility.

GSAP is a suite of tools for scripted animation. It has TweenLite.js; which is the core engine that handles animating just about any object. It is relatively lightweight yet full-featured and can be expanded using optional plugins.

GSAP Simple Start

You can start building animations by adding this cdn link to your html code

<script src="http://cdnjs.cloudflare.com/ajax/libs/gsap/1.19.0/TweenLite.min.js"></script>

Animation Sample

The video above is an animation sample for Superman image with class=cartoon

<img class="cartoon" src="assets/images/superman.png" width="200px" height="200px" style="transform: matrix(1, 0, 0, 1, 200, 0);">

The image is animated by beginning at a “From” state and moving with Elastic Ease Out animation in 1 second. In addition, you can use TweenLite to set the x position of the image element.

var superman = document.getElementsByClassName('cartoon')[0];
TweenLite.set(superman,{x:200});
TweenLite.from(superman, 1, {x:-200,ease:Elastic.easeOut});

You can see how it works via https://onlinedemos.tk/gsap.

Get Started Learning Today

You can get a full free tutorial sessions to learn GreenSock animation platform from GreenSock Website via this link https://greensock.com/get-started-js. The tutorial sessions include the lessons files. Don’t waste the chance to learn GreenSock Animation Platfrom. If you already know JavaScript, go to GreenSock website, sign up and start learning today.

 

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.