使gif按钮仅在悬停时播放。仅限HTTPS

时间:2017-06-01 20:16:51

标签: html button https web gif

我是这个网站的新手,我来到这里是因为我需要一些专业的帮助!

我正在一个网站(简单的编辑器)上工作,我希望将网站上的一些按钮变成gils,当悬停时播放,并在不悬停时重置。

我只有一个选项来实现HTML代码ant。特别是HTTPS,就像它在代码框中所说的那样。

我尝试过使用下面的代码,但它不起作用。请帮帮我吧!

另外。有没有办法让按钮在这样的代码片段中实际可点击,或者我搞砸了?

<img src="http://i.imgur.com/O2X6soK.png" onmouseenter="this.src ="http://i.imgur.com/80Q4rzw.gif;" onmouseout="this.src ='http://i.imgur.com/O2X6soK.png';" alt="something pithy">

1 个答案:

答案 0 :(得分:0)

<img src="http://i.imgur.com/O2X6soK.png" onmouseenter="this.src =`http://i.imgur.com/80Q4rzw.gif`;" onmouseout="this.src ='http://i.imgur.com/O2X6soK.png';" alt="something pithy"> 

您有拼写错误,请使用返回标记img url here

要制作图像按钮,请将图像标签放在按钮内。 fiddle