
就是這個,卡了快一個禮拜。主要要做到的事,是把上方用 CSS 調整過後的、眼睛看到的樣子,畫在下方 Canvas 裡,角度、旋轉、位移都要一樣。
function draw() {
const c = document.getElementById("myCanvas");
const ctx = c.getContext("2d");
const img = document.getElementById("scream");
document.getElementById("msg").innerHTML=img.offsetLeft;
const scaleratio=1.5;
const diffx=400 + img.width / 2;
const...