I’m trying to make this beam of light that follows mouse movement, typical of a light house basically. I’ve been able to get syntax, but the issue I have is that is that the code seems to break when carrying the cursor behind the light. I noticed that the issue is resolved when I change the transform origin to 50% 50%, but I still want the origin to be at 0 50% so it’s from a fixed point.
import { useRef } from "react";
const Lighthouse = () => {
const lightBeamRef = useRef(null);
function handleMouseMove(e) {
const rect = lightBeamRef.current.getBoundingClientRect();
const originX = rect.left + rect.width / 2;
const originY = rect.top + rect.height / 2;
const cursorX = e.clientX;
const cursorY = e.clientY;
const angle =
(Math.atan2(cursorY - originY, cursorX - originX) * 180) / Math.PI + 1;
lightBeamRef.current.style.transform = `rotate(${angle}deg)`;
lightBeamRef.current.style.transformOrigin = "0% 50%";
}
return (
<>
<div
className="light-rock bg-stone-700 w-screen h-screen justify-center items-center flex"
onMouseMove={(e) => handleMouseMove(e)}
>
<div
ref={lightBeamRef}
className="light-beam bg-gray-200 w-50 rounded-full"
style={{
height: "100px",
clipPath: "polygon(0 50%, 100% 0, 100% 100%)",
transformOrigin: "0% 50%",
background: "linear-gradient(45deg, #FA6900, #C02942)",
transition: "transform 0.05s ease-out",
}}
></div>
</div>
</>
);
};
export default Lighthouse;