- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 8323 Articles for Front End Technology

Updated on 17-Mar-2023 11:41:05
AJAX (Asynchronous JavaScript and XML) is not a programming language but a technique for creating more interactive web applications. Unlike conventional web applications, which direct us to a new page when interacting with the server, AJAX loads data onto the screen without letting the user know that the request was even made. Advantages Displays content dynamically without reloading the HTML page. Faster interaction with the users. Updates the data within the page without redirecting the user. Users were allowed to use the website while communication with the server went in the background. What is meant by Callback Function? ... Read More 
Updated on 17-Mar-2023 11:25:32
In this tutorial, we will learn to implement MUL() function in JavaScript. This function is a very small kind of multiplication function. Basically, we use the concept of nested functions to implement MUL( ) function. Nested functions are used for creating closures and decorators. And we can achieve privacy using nested functions. There are two ways to implement MUL() function using nested functions − Using nested function with name By currying a function Using nested Function With Name In JavaScript, we can use nested functions to get the multiplication result. We need to write n nested functions to ... Read More 
Updated on 16-Mar-2023 15:10:10
Linear gradient background in CSS is a design technique used to create a smooth transition between two or more colors in a single element. It is defined using the CSS background-image property and the lineargradient() function. Linear gradient Properties in CSS to − it specifies the direction of the gradient color-stops − It specifies the colors used in the gradient and their position. repeating-linear-gradient − Creates a repeating gradient, where the gradient pattern is repeated horizontally or vertically. background-size − It specifies the size of the gradient background. background-clip − It specifies the area of the element that the ... Read More 
Updated on 16-Mar-2023 15:08:43
Gooey balls animation is a type of animation that is created using HTML and CSS. This animation style is created by specifying values of CSS properties at different points in the animation using keyframes, and then applying the animation to the HTML element. Gooey balls are a popular and visually appealing animation style created using HTML and CSS. In this animation we create a smooth, flowing and squishy effect to a circular object, making it look like a ball made of goo. This type of animation is a great way to add a fun and engaging touch to the website. ... Read More 
Updated on 16-Mar-2023 15:06:46
The hover animation effect in CSS refers to the change in appearance of an element when the mouse pointer is over it. We use CSS to create various animation effects on hover, such as scaling, fading, sliding, or rotating elements. Properties of button hover animation effect transform − This property allows you to scale, rotate, or translate an element. opacity − This property sets the transparency level of an element, where 1 is fully visible and 0 is completely transparent. background-color − This property sets the background color of an element. color − This property sets the text color ... Read More 
Updated on 16-Mar-2023 15:05:21
In SS, animation is an effective way to add some visual flair to the website. However, sometimes we want to have more control over when and how these animations play. Here, we will explore how to play and pause CSS animations using CSS custom properties. Before we go ahead, we should know that CSS animations can be created using keyframes or by transitioning between two or more states. Syntax @keyframes animation-name { /* define the animation steps */ } We define the animation by giving it a name and using the @keyframes keyword. Within the curly ... Read More 
Updated on 16-Mar-2023 15:01:28
Making a transition height from 0 to "auto" is a way to smoothly animate an element's height as it changes to fit its content. In web development, creating smooth and elegant transitions can make a website more attractive and provide a better user experience. However, creating a transition from a height of 0 to "auto" can be a bit tricky. Syntax transition: [property] [duration] [timing-function] [delay]; Here, property is the CSS property that we want to animate, duration is the length of time that we want the transition to last, timing-function specifies the timing curve or pace of the ... Read More 
Updated on 16-Mar-2023 14:51:19
Fade balls loader animation is a popular and attractive visual effect that is used to engage website users. It is a simple animation that fading in and fading out the balls to create an eye-catching loading effect. What is Fade balls loader Animation in CSS? A fade ball loader animation is a type of loading animation in which a series of circles or balls fade in and fade out in a loop. It indicates that content is being loaded on a webpage. This type of animation is commonly used in web design to keep users engaged and informed while they ... Read More 
Updated on 16-Mar-2023 14:49:41
Cascading Style Sheets (CSS) is an important tool for designing websites, allowing developers to control the visual style and layout of a webpage. One important aspect of CSS is the ability to define the color of a border around an element on the page, such as a box or an image. In this article, we will discuss how to define the color of the border using CSS. There are various ways to define the color of a border using CSS, but the most common and important method is through the "border-color" property. This property allows us to set the color ... Read More 
Updated on 16-Mar-2023 14:46:19
CSS is a powerful tool that allows web developers to create engaging and interactive web experiences. One of the ways CSS used is to define the border bottom color of an element. While it may seem like a simple task, it is important to understand how the border bottom color can be animated for added effect. In CSS, animation refers to the process of changing the style of an element over time. Animating the border bottom color of an element helps draw attention to it and make it more visually interesting. In order to make this effect, the border bottom ... Read More Advertisements