vue2.0获取鼠标位置的方法
程序员文章站
2024-01-16 08:30:34
如下所示:
如下所示:
<!doctype html> <html> <head> <meta charset="utf-8"> <title></title> <script type="text/javascript" src="js/vue.js" ></script> <style> #canvas{ width: 500px; height: 500px; text-align: center; line-height: 500px; border: 1px solid #e5e5e5; margin: 0 auto; margin-top: 100px; } </style> </head> <body> <div id="app"> <div id='canvas' @mousemove='updatexy'> {{x}} {{y}} </div> </div> <script> new vue({ el:'#app', data:{ x:0, y:0 }, methods:{ updatexy:function(event){ this.x=event.offsetx; this.y=event.offsety } } }) </script> </body> </html>
以上这篇vue2.0获取鼠标位置的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: python利用smtplib实现QQ邮箱发送邮件
下一篇: 获取Linux ip