Social Media is the best place for communicating with the viewers and followers for promoting brands and improving the quality of products.
Today’s technological advancement in the world has tremendous security issues, the biggest concern about the web security is user’s data. Chrome indicates HTTP & HTTPS connection of the website with an icon in the address bar. HTTP doesn’t mean that the website is not secure but it means that someone can look at or modify the […]
Add the below script tag in your head tag <script src=”https://github.com/bas2k/jquery.appear/blob/master/jquery.appear.js”></script> Animate from top HTML<div class=”top”> content goes here… </div> CSS<style> .top { top: -50px; padding-right: 0px; opacity: 0; position: relative; } </style> JQuery<script> $(‘.top’).each(function() { $(this).appear(function() { $(this).delay(150).animate({ opacity : 1, top : “0px” }, 1000); }); }); </script> Animate from bottom HTML<div class=”bottom”> […]