在我的网站中,我使用jQuery来更改图像。
我已经创建了jQuery,现在我需要做的是在mouseover
和mouseout
添加平滑延迟。
我知道可以用setTimeout()
完成,但是如何完成它会很困惑。
答案 0 :(得分:0)
答案 1 :(得分:0)
使用$(".as-panel[data-index='0']")
代替$(this)
答案 2 :(得分:0)
Try this
$(".as-panel[data-index='0']").mouseover(function() {
$( "span" ).text( "That was index #");
pausecomp(500);
$(this).find("img").attr('src','http://www.kerry-beaches.com/images/contact-me-facebook-thumbnail.jpeg');
});
function pausecomp(millis)
{
var date = new Date();
var curDate = null;
do { curDate = new Date(); }
while(curDate-date < millis);
}
$(".as-panel[data-index='0']").mouseout(function() {
// `this` is the DOM element that was clicked
$( "span" ).text( "That wasindex #");
pausecomp(500);
$(this).find("img").attr('src','http://blog.room34.com/wp-content/uploads/underdog/logo.thumbnail.png');
});
//http://www.kerry-beaches.com/images/contact-me-facebook-thumbnail.jpeg