【发布时间】:2017-03-26 14:05:59
【问题描述】:
【问题讨论】:
-
图片如何包含在img标签中或作为标题的背景?
-
在 img 标签中。图片在标题下方,但不作为背景
-
请分享一些 HTML 代码。
标签: javascript css wordpress
【问题讨论】:
标签: javascript css wordpress
使用 jQuery。
$(function() {
$("img")
.mouseover(function() {
$(this).attr("src", "newImage.jpg");
})
.mouseout(function() {
$(this).attr("src", "originalImage.jpg");
});
});
【讨论】:
您可以使用上述 jquery 的修改版本或仅使用 css。 为图像提供一个 id 并使用 @Sandwell 发布的 jquery 代码中的 id
如果你使用 css 试试 :hover 属性
【讨论】:
<div id="my-img> </div> css #my-mg { background: url('first-img.jpg') } #my-mg:hover { background: url('second-img.jpg') } 来实现这一点