Skip to content
Advertisement

How do you read the rotation of a div using javascript?

I have a spinning wheel that I need to read the rotation for. It spins and stops, then I need to read the rotation to know how many points to assign to it. (the wheel with point values on it). How would I do this? I would think that it would be document.querySelector(".container").style.transform.rotate but it returns NaN.

This is the code I’m using to rotate the wheel.

JavaScript

Advertisement

Answer

You can simply access the final rotation in the callback of the outer setTimeout.

JavaScript

Alternatively You can use window.getComputedStyle() to return the full computed transform matrix. You’ll need to parse it from there.

JavaScript

A rundown of the math on CSS-Tricks:Get Value of CSS Rotation through JavaScript or in this answer: How to get CSS transform rotation value in degrees with JavaScript

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement