Lakshmi Srinivas has Published 315 Articles

How [ ] is converted to Boolean in JavaScript?

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 23-May-2020 10:09:15

92 Views

Use the Boolean() method in JavaScript to convert to Boolean. You can try to run the following code to learn how to convert [ ] to Boolean in JavaScript.ExampleLive Demo           Convert [] to Boolean                var myVal = [];          document.write("Boolean: " + Boolean(myVal));          

How [ ] is converted to Number in JavaScript?

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 23-May-2020 09:15:26

121 Views

Use the Number() method in JavaScript to convert to Number. You can try to run the following code to learn how to convert [ ] to Number in JavaScript.ExampleLive Demo           Convert [] to Number                var myVal = [];          document.write("Number: " + Number(myVal));          

How to work with document.title in JavaScript?

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 21-May-2020 07:49:29

190 Views

Use the document.title property to set the title of the document in JavaScript.ExampleYou can try to run the following code to implement document.title property in JavaScript.Live Demo           Demo Title                        var x = document.title;          document.write("Our Title: "+x);          

Fade Out Up Big Animation Effect with CSS

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 16-Mar-2020 08:13:53

96 Views

To implement Fade Out Up Big Animation Effect on an image with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             ... Read More

CSS background-image property

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 16-Mar-2020 08:05:13

174 Views

The CSS background-image property is used to specify the background image. You can try to run the following code to implement the background-image property in CSS −Example                    #demo {             border: 5px dashed red; ... Read More

Bounce Animation Effect with CSS

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 16-Mar-2020 07:56:05

345 Views

Bounce Animation effect is used to move the element quick up, back, or away from a surface after hitting it.ExampleYou can try to run the following code to implement bounce animation effect −Live Demo                    .animated {       ... Read More

CSS pause property

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 16-Mar-2020 07:50:08

187 Views

This property is a shorthand for setting pause-before and pause-after. If two values are given, the first value is pause-before and the second is pause-after.ExampleLet us see an example of pause property in CSS −    

CSS border-bottom-right-radius property

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 16-Mar-2020 07:42:18

61 Views

Use border-bottom-right-radius property for setting the border of the bottom right corner. You can try to run the following code to implement border-bottom-right-radius property −ExampleLive Demo                    #rcorner {             border-radius: 25px;             border-bottom-right-radius: 45px;             background: orange;             padding: 20px;             width: 200px;             height: 150px;          }                     Rounded corners!    

Add special colored corner to body or text in CSS

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 16-Mar-2020 07:35:44

339 Views

CSS3 Rounded corners are used to add special colored corner to body or text by using the border-radius property.ExampleLive Demo                    #rcorner {             border-radius: 25px;             background: #8AC007;             padding: 20px;             width: 200px;             height: 150px;          }                     Rounded corners!    

CSS azimuth Property

Lakshmi Srinivas

Lakshmi Srinivas

Updated on 16-Mar-2020 07:26:11

156 Views

The azimuth property sets where the sound should come from horizontally. The possible values are listed below:angle − Position is described in terms of an angle within the range -360deg to 360deg. The value 0deg means directly ahead in the center of the soundstage. 90deg is to the right, 180deg ... Read More

Advertisements