js style.transform code example

Example 1: js transform rotate

object.style.transform="rotate(7deg)";

Example 2: css transform in javascript

document.getElementById("myDIV").style.transform = "rotate(7deg)";

Example 3: text transform javascript

<!DOCTYPE html>
<html>
<body>

<p id="demo">This is an example paragraph.</p>

<button type="button" onclick="myFunction()">Transform text</button>

<script>
function myFunction() {
  document.getElementById("demo").style.textTransform = "capitalize";
}
</script>

</body>
</html>

Tags:

Css Example