我正在显示和隐藏一个包含文本的 div,以便能够看到后面的背景图像。在让我的 div 稍微移动并保持我的 div 在侧面可见方面,我得到了很大的帮助
$("#welcome").toggle(
function() {
var left = $(this).outerWidth() - 10 + "px";
$(this).animate({ "margin-left": "+=" + left }, 500);
$(this).onClick() },
function() {
var left = $(this).outerWidth() - 10 + "px";
$(this).animate({ "margin-left": "-=" + left }, 500);
}
);
现在我希望我在 html 中的图像更改形式隐藏以显示...
<div id="welcomepicture">
<div id="welcome">
Welcome some really meaningful text here!
<p class="arrowfull"><a href="#"> <img class="img-swap" src="http://housing.ucsc.edu/guide/css/images/hide_off.png" alt="Click to view full image" title="Click to view full image" height="42" width="17"> </a></p>
我不确定是否在 javascript 中放置 .onClick 图像交换?还是我写一个新的var?jquery 和 javascript 新手,感谢您的帮助