带按钮的翻转图像

发布于 11-03 07:49 字数 29 浏览 2 评论 0原文

有没有办法使图像类型的表单输入具有翻转图像?

Is there a way to make a form input of type image to have a rollover image?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心凉怎暖2024-11-10 07:49:32

试试这个?

<input type="image" value="someValue" src="yourImage.gif" width="widthInPixels" height="heightInPixels" onmouseover="this.src='yourImageRollover.gif';" onmouseout="this.src='yourImage.gif';"> 

Try this?

<input type="image" value="someValue" src="yourImage.gif" width="widthInPixels" height="heightInPixels" onmouseover="this.src='yourImageRollover.gif';" onmouseout="this.src='yourImage.gif';"> 
深爱不及久伴2024-11-10 07:49:32

与任何其他图像相同的方式。当 mouseover 事件触发时更改 src 属性。

The same way as any other image. Change the src property when the mouseover event fires.

她说她爱他2024-11-10 07:49:32

我只会使用普通的提交输入并在其上使用 css sprites。

http://www.alistapart.com/articles/sprites

I would just use a normal submit input and use css sprites on it.

http://www.alistapart.com/articles/sprites

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文