jquery - Nice effects when scrolling down -
when go this site, see items have nice effects when scroll page down. how can this?
i know how handle jquery or css effects how effects activated whenever scroll down page?
that effect achieved css3 transitions , transforms. looking myself few weeks ago , implemented on website. here easy tutorial desired results in no time: http://www.web2feel.com/tutorial-for-animated-scroll-loading-effects-with-animate-css-and-jquery
basically how works have 2 scripts, animate.css & viewportchecker.js. animate.css contains styling cool transitions fade in, slide out etc. viewportchecker.js on other hand contains script determines dom elements in view.
the 2 combined dynamically add css classes elements in view.
<link rel="stylesheet" type="text/css" href="animate.css" /> <script src="jquery.js"></script> <script src="viewportchecker.js"></script> <script src="jquery.js"> $(document).ready(function() { $(.animated-element).addclass("hidden").viewportchecker({ classtoadd: "visible animated fadein", //class add elements when in view offset: 100 // duration of transition in milliseconds }); }); </script>
Comments
Post a Comment