jQuery实现磁力图片跟随效果完整示例
永远爱好写程序 人气:0本文实例演示了jQuery实现磁力图片跟随效果。分享给大家供大家参考,具体如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>磁力图片</title> <style type="text/css"> #imgSel{position:absolute;} </style> <script src="../js/jquery-1.5.1.min.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { $(document).mousemove(function (e) { $("#imgSel").animate({"left":e.pageX,"top":e.pageY},0.1); }); }); </script> </head> <body> <img id="imgSel" src="../images/select.JPG" /> </body> </html>
希望本文所述对大家jQuery程序设计有所帮助。
加载全部内容