如何使 div 内的文本(“再试一次”)来回移动?当玩家输掉并且笑脸出现时,我定义箭头中的文本将更改为“重试”,我希望玩家必须点击他才能再次玩。
这是小提琴链接:http: //jsfiddle.net/uqcLn/41/
$(".way").bind('mouseenter', function() {
$('#highlight_lose').fadeIn(1000);
$('.wall').css("background", '#fff');
$(".white").html("Try again");
/* this is what i tried */ $(".white").animate({
"left": "-10px" }, 500);
})