0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

v-onでイベント情報を取得する ❏Vue.js❏

Posted at

今回はある場所にマウスが乗ったら、そこのイベント情報を取得してX軸とY軸を表示させます。

Screenshot from Gyazo


開発環境はJSFiddle https://qiita.com/ITmanbow/items/9ae48d37aa5b847f1b3b
html
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>

<div id="app">
  <p @mousemove="changeMousePosition">マウスを乗せる</p>
  <p>x:{{ x }}</p>
  <p>y:{{ y }}</p>
</div>
javascript
new Vue({
  el: "#app",
  data: {
    x:0,
    y:0
  },
  methods: {
    changeMousePosition(event) {
      this.x = event.clientX;
      this.y = event.clientY;
    }
  }
})

v-onは@に省略
mousemoveイベントにchangeMousePositionメソッド
メソッドの引数にeventを取るとイベントの情報が取得できます。

console.log(event)イベント情報を確認してみると...
798bf01fc6466b9f3b5da03bac08044d.png
この下にもズラーッと情報がありますが、今回はclientXclientYを使いました。


ではまた!
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?