Learning Animation Effects with jQuery

The jQuery animate() method is used to create custom animations. The animate() method is typically used to animate numeric CSS properties, for example, width, height, margin, padding, opacity, top, left, etc. but the non-numeric properties such as color or background-color cannot be animated using the basic jQuery functionality. Syntax The basic syntax of the jQuery animate() method can be given with: [tabby title=”jQuery”] $(selector).animate({ properties }, duration, callback); [tabbyending] The […]

Best Practices for Responsive Device Friendly Forms

Whether it is a simple contact form or a multi-step registration form, forms are one of the most important components of any website. They help you in getting in touch with your users, get feedback, secure sales leads and so on. As most of the users access websites via their mobile devices, the web forms […]

How to Create a Hidden Search Box with Toggle Button

In today’s web tutorial, we will learn how to build a hidden search form with a toggle button to reveal it. This toggle enabled search form is a popular function nowadays and is used on many websites and blogs. It saves space on your website, is unobtrusive and gives your users a clean way to […]

A Crash Course in SASS

SASS (Syntactically Awesome Stylesheet) is a CSS preprocessor, which helps to reduce repetition with CSS and saves you a lot of precious time. It makes large and complicated stylesheets clearer to understand and easier to maintain. It is a more stable and powerful CSS extension language that describes the style of document structurally. The following […]