有没有办法使图像类型的表单输入具有翻转图像?
Is there a way to make a form input of type image to have a rollover image?
试试这个?
<input type="image" value="someValue" src="yourImage.gif" width="widthInPixels" height="heightInPixels" onmouseover="this.src='yourImageRollover.gif';" onmouseout="this.src='yourImage.gif';">
Try this?
与任何其他图像相同的方式。当 mouseover 事件触发时更改 src 属性。
mouseover
src
The same way as any other image. Change the src property when the mouseover event fires.
我只会使用普通的提交输入并在其上使用 css sprites。
http://www.alistapart.com/articles/sprites
I would just use a normal submit input and use css sprites on it.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
试试这个?
Try this?