Notice
Recent Posts
Recent Comments
Link
목록JavaScript (1)
초짜코딩의 잡동사니

const cursor = document.querySelector(".cursor"); // const circle1 = document.querySelector(".cursor").clientWidth; //190 : border값이 빠진 상태 // const circle2 = document.querySelector(".cursor").offsetWidth; //200 : border값 포함 상태 const circle3 = document.querySelector(".cursor").getBoundingClientRect(); //bottom: 200, height: 200, left: 0, right: 200, top: 0, width: 200, x: 0, y: 0 function follow(..
Script Sample/mouse effect
2022. 3. 4. 10:22