Сообщение от рони
|
colmer,
как вариант ...
$( document ).ready(function() {
$(".chuse").click( function() {
$(".welcome").fadeOut( function() {
$(".weapons").fadeIn();
} );
});
$("input").on("input",function() {
var name = $.trim(this.value);
this.value = name ;
player.nickname = name;
$(".chuse").prop({"disabled" : !name}).text(name ? "Начать" : "Выбрать").css({"fontSize" : name ? "12px" : "24px"}).stop(true, true).animate({"fontSize": name ? "24px" : "12px"},600)
})
var inventory = function (chose) {
|
Если .css({"fontSize" : name ? "12px" : "24px"}) оставить, получается бешенная кнопка))) При каждом нажатии уменьшает и увеличивает текст, оставил :
$(".chuse").prop({"disabled" : !name}).text(name ? "В бой" : "Ввести").stop(true, true).animate({"fontSize": name ? "24px" : "12px"},600);