Articles on Trending Technologies

Technical articles with clear explanations and examples

Fade Out Up Animation Effect with CSS

George John
George John
Updated on 15-Mar-2026 174 Views

The CSS fade out up animation effect creates a smooth transition where an element gradually fades out while moving upward. This effect is commonly used for removing elements from view with a subtle upward motion. Syntax @keyframes fadeOutUp { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-distance); ...

Read More

Auxiliary Space with Recursive Functions in C Program?

Arnab Chakraborty
Arnab Chakraborty
Updated on 15-Mar-2026 470 Views

Here we will see how auxiliary space is required for recursive function calls and how it differs from normal function calls in terms of memory usage. Syntax returnType functionName(parameters) { // Base case if (condition) return baseValue; // Recursive case return functionName(modifiedParameters); } Recursive Function Example Consider a recursive factorial function − #include long fact(int n) { if (n == 0 || ...

Read More

CSS elevation Property

karthikeya Boyini
karthikeya Boyini
Updated on 15-Mar-2026 1K+ Views

The elevation property in CSS sets the vertical position of a sound source in 3D audio space. This property is part of the aural stylesheet properties designed for speech synthesizers and audio browsers. Syntax selector { elevation: value; } Possible Values ValueDescription angleSpecifies elevation as an angle between -90deg and 90deg belowSame as -90deg (directly below the listener) levelSame as 0deg (on the forward horizon) aboveSame as 90deg (directly overhead) higherAdds 10 degrees to the current elevation lowerSubtracts 10 degrees from the current elevation Example The ...

Read More

Array range queries for elements with frequency same as value in C Program?

Arnab Chakraborty
Arnab Chakraborty
Updated on 15-Mar-2026 368 Views

In C programming, array range queries for elements with frequency same as value is a problem where we need to find how many elements in a given range appear exactly as many times as their value. For example, if element 3 appears 3 times in the range, it contributes to our answer. Syntax int query(int start, int end, int arr[], int n); Algorithm The approach uses frequency counting within the specified range − Begin create frequency map for elements in range [start, end] count ...

Read More

CSS speak property

Samual Sam
Samual Sam
Updated on 15-Mar-2026 123 Views

The CSS speak property controls how text content is rendered by screen readers and other assistive technologies. It determines whether text should be spoken aloud and how it should be pronounced when read by speech synthesis software. Syntax selector { speak: value; } Possible Values ValueDescription noneSuppresses aural rendering so that the element requires no time to render normalUses language-dependent pronunciation rules for rendering an element and its children spell-outSpells the text one letter at a time Example: Different Speak Values The following example demonstrates different ...

Read More

Area of the biggest possible rhombus that can be inscribed in a rectangle in C Program?

Arnab Chakraborty
Arnab Chakraborty
Updated on 15-Mar-2026 275 Views

Here we will see one problem, where one rectangle is given. We have to find the area of largest rhombus that can be inscribed in the rectangle. Rectangle Inscribed Rhombus Length (l) Breadth (b) ...

Read More

Fade Out Right Big Animation Effect with CSS

Yaswanth Varma
Yaswanth Varma
Updated on 15-Mar-2026 211 Views

Animations never fail to attract people. When you present them with a painting and a video, they will always focus on the moving image since it is more visually appealing. The fade out right big animation creates a dramatic exit effect where elements fade away while sliding to the right with increased scale, adding visual impact to your web interfaces. Syntax @keyframes fadeOutRightBig { from { opacity: 1; transform: translateX(0); } ...

Read More

Area of squares formed by joining mid points repeatedly in C Program?

Arnab Chakraborty
Arnab Chakraborty
Updated on 15-Mar-2026 188 Views

In this problem, we create a series of squares by repeatedly connecting the midpoints of the sides of the previous square. Given an initial square with side length 'a' and the number of iterations 'n', we need to find the area of the nth square. Side = a Side = a/√2 ...

Read More

Fade Down Big Animation Effect with CSS

karthikeya Boyini
karthikeya Boyini
Updated on 15-Mar-2026 155 Views

The CSS Fade Down Big animation effect creates a dramatic exit animation where an element fades out while moving downward by a large distance. This animation is commonly used for dramatic page transitions or removing elements from view. Syntax @keyframes fadeOutDownBig { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; ...

Read More

Bounce Out Right Animation Effect with CSS

Arjun Thakur
Arjun Thakur
Updated on 15-Mar-2026 109 Views

The CSS Bounce Out Right animation effect creates a bouncing motion where an element slides to the right while fading out. The animation starts with a slight leftward movement before bouncing out to the right side of the screen. Syntax @keyframes bounceOutRight { 0% { transform: translateX(0); } 20% { opacity: 1; transform: translateX(-20px); } 100% { opacity: 0; transform: translateX(2000px); } } .element { animation: bounceOutRight duration timing-function; } Example The following example demonstrates the bounce ...

Read More
Showing 21451–21460 of 61,297 articles
Advertisements