Giri Raju has Published 88 Articles

How to create a line break with JavaScript?

Giri Raju

Giri Raju

Updated on 07-Aug-2024 16:00:27

42K+ Views

To create a line break with JavaScript, we will be understanding three different approaches. In this article, we are having some text content and our task is to create line break using Javascript. We will be using tag, \n and insertAdjacentHTML() method along with block elements with explaination and ... Read More

Integrating .NET application with SAP system and using best practices

Giri Raju

Giri Raju

Updated on 04-Mar-2024 13:06:45

833 Views

To connect a .NET application with SAP system, there are different approaches that you can follow:Use of SAP PI middleware that offers different protocols and communication framework for integration of two systems. SAP PI/XI enables you to set up cross system communication and integration and allows you to connect SAP ... Read More

Changing three.js background to transparent or another color in HTML

Giri Raju

Giri Raju

Updated on 23-Nov-2023 14:22:48

1K+ Views

If you want a transparent background in three.js, you need a pass in the alpha parameter to the WebGLRenderer constructors in the below-given code − var renderer = new THREE.WebGLRenderer( {alpha: true } ); // You can leave the clear color at the defaultvalue. renderer.setClearColor( 0x000000, 0 ); //default ... Read More

How do we send an email using HTML forms?

Giri Raju

Giri Raju

Updated on 02-Sep-2023 13:19:23

58K+ Views

To send an email using HTML forms, you need to add the email id to the action attribute of the form. In that, add email proceeding with mailto: i.e. mailto:emailid@example.com.ExampleYou can try to run the following code to send an email using HTML forms −Live Demo       ... Read More

How to get the arctangent (in radians) of a number in JavaScript?

Giri Raju

Giri Raju

Updated on 06-Sep-2022 14:02:01

255 Views

In this tutorial, we will learn how to get the arctangent (in radians) of a number in JavaScript. We can use the JavaScript Math object to perform mathematical operations on integers. Math is a pre-defined object with attributes and methods to perform different mathematical functions and constants. This isn't a ... Read More

Set style to current link in a Navigation Bar with CSS

Giri Raju

Giri Raju

Updated on 01-Jul-2020 10:52:03

2K+ Views

To set a style to current link in a navigation bar, add style to .active. You can try to run the following code to style current link:ExampleLive Demo                    ul {             list-style-type: none;   ... Read More

Role of CSS :link Selector

Giri Raju

Giri Raju

Updated on 30-Jun-2020 11:16:36

223 Views

Use the CSS :link selector to style all unvisited links. You can try to run the following code to implement the :link selector −ExampleLive Demo                    a:link {             background-color: orange;          }                     Demo Websitehttps://www.example.com/    

Show the background image only once with CSS

Giri Raju

Giri Raju

Updated on 30-Jun-2020 07:50:30

789 Views

Use the background-repeat property to display the background image only once. You can try to run the following code to implement the background-repeat property −ExampleLive Demo                    body {             background-image: url("https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg");             background-repeat: no-repeat;          }                     Background Image    

Rotate transform the element by using x-axis with CSS3

Giri Raju

Giri Raju

Updated on 29-Jun-2020 10:04:58

234 Views

Use the rotateX(angle) method to rotate transform the element by using x-axis with CSS3 −ExampleLive Demo                    div {             width: 200px;             height: 100px;             background-color: pink;             border: 1px solid black;          }          div#myDiv {             -webkit-transform: rotateX(150deg);             /* Safari */             transform: rotateX(150deg);             /* Standard syntax */          }                              tutorialspoint.com             Rotate X-axis                tutorialspoint.com          

Rotate Out Down Right Animation Effect with CSS

Giri Raju

Giri Raju

Updated on 29-Jun-2020 08:37:16

64 Views

To create rotate out downright animation effect with CSS, you can try to run the following code −ExampleLive Demo                    .animated {             background-image: url(/css/images/logo.png);             background-repeat: no-repeat;       ... Read More

1 2 3 4 5 ... 9 Next
Advertisements