Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>마우스 포인터를 따라다니는 이미지</title>
- </head>
- <body>
- <img id="image" src="http://lorempixel.com/50/50/animals" width="50" height="50" style="position:absolute;">
- <script src="http://code.jquery.com/jquery-1.11.1.js"></script>
- <script>
- $(document).mousemove(function(e){
- $("#image").stop().animate({left:e.pageX, top:e.pageY});
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment