Ankith Reddy has Published 1070 Articles

Set an animation with the same speed from start to end with CSS

Ankith Reddy

Ankith Reddy

Updated on 24-Jun-2020 06:20:20

195 Views

Use the animation-timing-function property, with the linear value to set animation with the same speed from start to end with CSSExampleLive Demo                    div {             width: 150px;             height: ... Read More

How to debug a core in C/C++?

Ankith Reddy

Ankith Reddy

Updated on 24-Jun-2020 06:17:58

325 Views

A process dumps core when it is terminated by the operating system due to a fault in the program. The most typical reason this occurs is that the program accessed an invalid pointer value like NULL or some value out of its memory area. As part of that process, the ... Read More

CSS animation-iteration-count property

Ankith Reddy

Ankith Reddy

Updated on 24-Jun-2020 06:06:47

91 Views

Use the animation-iteration-count property to set the number of times an animation should be played with CSS.You can try to run the following code to implement the animation-iteration-count propertyExampleLive Demo                    div {             width: ... Read More

Set an animation with a slow start, then fast, and end slowly with CSS

Ankith Reddy

Ankith Reddy

Updated on 24-Jun-2020 05:51:53

1K+ Views

Use the animation-timing-function property, with the ease value to set animation with a slow start, then fast, to end slowly with CSSExampleLive Demo                    div {             width: 150px;             ... Read More

How to delay an animation with CSS

Ankith Reddy

Ankith Reddy

Updated on 24-Jun-2020 05:46:47

74 Views

To delay an animation, use the CSS animation-delay property. You can try to run the following code to delay animationExampleLive Demo                    div {             width: 150px;             height: 200px;             background-color: yellow;             animation-name: myanim;             animation-duration: 2s;             animation-delay: 2s;          }          @keyframes myanim {             from {                background-color: green;             }             to {                background-color: blue;             }          }                        

Add CSS transition effect for both the width and height property

Ankith Reddy

Ankith Reddy

Updated on 23-Jun-2020 16:30:14

492 Views

To add transition effect for width and height property of an element, you can try to run the following codeExampleLive Demo                    div {             width: 150px;             height: 150px; ... Read More

Role of CSS [attribute="value"] Selector

Ankith Reddy

Ankith Reddy

Updated on 23-Jun-2020 16:15:32

2K+ Views

Use the [attribute=”value”] selector to select elements with a specified attribute and value.You can try to run the following code to implement the CSS [attribute="value"] Selector. Here, we have considered the attribute as rel, ExampleLive Demo                    a[rel = nofollow] { ... Read More

Python program to remove all duplicates word from a given sentence.

Ankith Reddy

Ankith Reddy

Updated on 23-Jun-2020 16:04:23

476 Views

Given a sentence. Remove all duplicates words from a given sentence.ExampleInput: I am a peaceful soul and blissful soul. Output: I am a peaceful soul and blissful.AlgorithmStep 1: Split input sentence separated by space into words. Step 2: So to get all those strings together first we will join each ... Read More

Which CSS property is used to run Animation in Reverse Direction?

Ankith Reddy

Ankith Reddy

Updated on 23-Jun-2020 15:48:25

215 Views

Use the animation-direction property to run animation in reverse direction. The property is used with the reverse animation value to achieve this.ExampleLive Demo                    div {             width: 150px;             height: 200px;             background-color: yellow;             animation-name: myanim;             animation-duration: 2s;             animation-direction: reverse;          }          @keyframes myanim {             from {                background-color: green;             }             to {                background-color: blue;             }          }                        

synchronized Keyword in Java

Ankith Reddy

Ankith Reddy

Updated on 23-Jun-2020 15:32:55

2K+ Views

When we start two or more threads within a program, there may be a situation when multiple threads try to access the same resource and finally they can produce unforeseen result due to concurrency issues. For example, if multiple threads try to write within a same file then they may ... Read More

Advertisements