是否可以为CSS3中的src
,onmouseout
和onmousehover
制作课程?
<img src="http://www.somesite.com//images/g.png" onmouseout="this.src = 'http://www.somesite.com/images/g.png'" onmouseover="this.src = 'http://www.somesite.com/images/g-colored.png'" />
答案 0 :(得分:0)
您可以使用:hover
伪规则以及background
样式属性和url()
函数来完成此操作。首先使用某种“空白”标签,然后使用以下内容:
#my_tag_id
{
background: url('/some/url/to/the/default/image.png');
}
#my_tag_id:hover
{
background: url('/some/url/to/the/hover/image.png');
}
这本身不会使用src
标记的img
属性,但在没有任何Javascript的情况下具有相同的效果