Study/팁

마우스 따라다니는 텍스트 만들기

ABCD 2023. 2. 1.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
HTML:
 
<div id="text">Move your mouse over me!</div>
 
 
 
jQuery:
 
$(document).mousemove(function(event) {
  $("#text").css({
    left: event.pageX,
    top: event.pageY
  });
});
 
 
CSS:
#text {
  position: absolute;
}
cs
728x90
반응형

댓글

💲 추천 글