3
我創建了一個迷宮,我想設置一個事件(或者需要什麼),當用戶的鼠標離開 (在他失敗),它會清除彩色的方式,因爲他可以重新開始再次鼠標離開清晰,並開始了條件
$(".way").bind('mouseenter', function() {
$('#highlight_lose').fadeIn(400);
})
這裏是小提琴鏈接:
我創建了一個迷宮,我想設置一個事件(或者需要什麼),當用戶的鼠標離開 (在他失敗),它會清除彩色的方式,因爲他可以重新開始再次鼠標離開清晰,並開始了條件
$(".way").bind('mouseenter', function() {
$('#highlight_lose').fadeIn(400);
})
這裏是小提琴鏈接:
添加$(".wall").css("background",'#fff');
到#highlight_lose
和#finish
$('#highlight_lose').bind('mouseleave', function() {
$(this).fadeOut(400);
$(".wall").css("background",'#fff');
})
$('#finish').bind('mouseenter', function() {
$('#highlight_win').fadeIn(400);
$(".wall").css("background",'#fff');
})
非常感謝這就是我尋找感謝您的時間! – alonblack
喜歡這個? http://jsfiddle.net/uqcLn/12/ – DarthJDG
@DarthJDG是它的工作!做得好非常感謝您的時間 – alonblack