Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

วางเมาส์บนมาตราส่วนรูปภาพบน HTM5


หากต้องการปรับขนาดภาพเมื่อวางเมาส์ไว้ ให้ใช้ไลบรารี Vanilla JavaScript

เมื่อเลื่อนเมาส์ ให้ตั้งค่าดังนี้:

function move(e) {
   var pos = getMousePos(myCanvas, e);
   context.drawImage(img, -pos.x, -pos.y, img.width, img.height);
}

สำหรับผ้าใบ:

//add event listener we need
myCanvas.addEventListener('mouseout', display, false);
myCanvas.addEventListener('mousemove', move, false);


function display() {
   context.drawImage(img, 0, 0, img.width>>1, img.height>>1);
}