在鼠标悬停时启动 Gif,然后在结束时暂停 Gif,然后弹出信息?

Start Gif on Mouseover and then Pause Gif at it's end, and have info pop up after?

我有一个单元格 phone img,它坏了然后被修复然后屏幕拉出一个记事本(在单元格 phone 上)我不太明白如何让鼠标悬停转动屏幕固定,然后用 "cart" 信息打开记事本,这将如何工作?

好的,你的 html 看起来像这样:

<img id="img1" src="image1.jpg" />

显示phone。

你的 JS 看起来像这样:

var img = document.getElementById("img1");
img.addEventListener("mouseenter", function( event ) {   
    //replace the imagesource with the second image
}, false);

https://developer.mozilla.org/en-US/docs/Web/Events/mouseover

https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener