图像点击时出现几秒钟的图像

时间:2014-01-01 15:58:15

标签: javascript jquery html image

所以我希望图像在屏幕中间显示几秒钟,然后在点击屏幕上已有的其他图像后消失。

我对编码不是很好,这是我到目前为止所尝试的并不是我想要的。我如何使其发挥作用?

$('a').one('click',function(e){
   e.preventDefault();
   $(this).delay(1000).queue(this.click).find('img')[0].src = "newImageURL";
});   

<a href="image1"><img height="50" width="50" src="image2"></a>

0 个答案:

没有答案