Giri Raju has Published 101 Articles

Integrating .NET application with SAP system and using best practices

Giri Raju

Giri Raju

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

468 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

862 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 to create a line break with JavaScript?

Giri Raju

Giri Raju

Updated on 06-Sep-2023 21:27:21

34K+ Views

To create a line break in JavaScript, use "". With this, we can add more than one line break also.ExampleLet’s see it in the below example:                              

How do we send an email using HTML forms?

Giri Raju

Giri Raju

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

49K+ 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

135 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

1K+ 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

129 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

533 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

162 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 ... 11 Next
Advertisements