Radhakrishna has Published 93 Articles

Usage of CSS grid-auto-flow property

radhakrishna

radhakrishna

Updated on 25-Jun-2020 13:18:24

105 Views

Use the grid-auto-flow property to include auto-placed items in the grid.ExampleYou can try to run the following code to implement the grid-auto-flow property with CSS −Live Demo                    .container {             display: grid;     ... Read More

Set a delay for the start of an animation with CSS

radhakrishna

radhakrishna

Updated on 24-Jun-2020 06:16:26

110 Views

Use the animation-delay property to set a delay for the start of an animation with CSS:ExampleLive 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;             }          }                        

CSS animation-name property

radhakrishna

radhakrishna

Updated on 24-Jun-2020 06:07:22

91 Views

Use the animation-name property to set the name of the @keyframes animation.You can try to run the following code to implement the animation-name property:ExampleLive Demo                    div {             width: 150px;             height: 200px;             background-color: yellow;             animation-name: myanim;             animation-duration: 3s;             animation-delay: 3s;          }          @keyframes myanim {             from {                background-color: green;             }             to {                background-color: blue;             }          }                        

Run Animation backward first and then forwards with CSS

radhakrishna

radhakrishna

Updated on 24-Jun-2020 05:50:15

1K+ Views

Use the animation-direction property to run animation in first backward and then forward. The property is used with the alternate-reverse animation value to achieve this.ExampleLive Demo                    div {             width: 150px;       ... Read More

Usage of CSS perspective property

radhakrishna

radhakrishna

Updated on 23-Jun-2020 16:00:51

108 Views

To specify the perspective on how 3D elements are viewed, use the CSS perspective property.You can try to run the following code to work with perspective property:ExampleLive Demo                    .demo1 {             position: relative;   ... Read More

How to create fading effect with CSS

radhakrishna

radhakrishna

Updated on 23-Jun-2020 15:41:57

264 Views

To create a fading effect with CSS, use the c You can try to run the following code for fading effect:ExampleLive Demo                    #demo {             height: 100px;                background: linear-gradient(to right, rgba(255,50,30,0), rgba(255,50,30,1));             }                           Linear Gradient       Fading Effect    

Role of CSS :checked Selector

radhakrishna

radhakrishna

Updated on 22-Jun-2020 14:47:45

163 Views

Use the CSS :checked selector to style every checked element. You can try to run the following code to implement the :checked selector:ExampleLive Demo                    input:checked {             height: 20px;             width: 20px;          }                     Fav sports:                Football          Cricket           Tennis          Tennis           Output

How can we create a MySQL temporary table by using PHP script?

radhakrishna

radhakrishna

Updated on 22-Jun-2020 14:08:57

1K+ Views

As we know that PHP provides us the function named mysql_query() to create a MySQL table. Similarly, we can use mysql_query() function to create MySQL temporary table. To illustrate this, we are using the following example −ExampleIn this example, we are creating a temporary table named ‘SalesSummary’ with the help of ... Read More

Which PHP function is used to create a new database?

radhakrishna

radhakrishna

Updated on 22-Jun-2020 13:22:24

83 Views

PHP uses mysql_query function to create a MySQL database. This function takes two parameters and returns TRUE on success or FALSE on failure. Its syntax is as follows −Syntaxbool mysql_query( sql, connection );ExampleFollowings are the parameters used in this function −S. No.Parameter & DescriptionSqlRequired - SQL query to create a MySQL databaseconnectionOptional - ... Read More

Exit Methods in C# Application

radhakrishna

radhakrishna

Updated on 22-Jun-2020 13:16:20

10K+ Views

Environment.Exit() methodThe Environment.Exit() method terminates the process and returns an exit code to the operating system −Environment.Exit(exitCode);Use exitCode as 0 (zero) to show that the process completed successfully.Use exitCode as a non-zero number to show an error, for example −Environment.Exit(1) − Return a value 1 to show that the file ... Read More

Advertisements