Javascript-форум (https://javascript.ru/forum/)
-   Общие вопросы Javascript (https://javascript.ru/forum/misc/)
-   -   плавающая input text (https://javascript.ru/forum/misc/26560-plavayushhaya-input-text.html)

dadli 13.03.2012 00:52

плавающая input text
 
зсравствуите, хотел сделать поисковая строка таким образом, как сделана здес http://www.apple.com/
вот код

function my_focus() {
	w = 30;
	id = setInterval(
	function goo() {
	if (w > 0) {
		w = w - 1;
		document.getElementById('in_te').style.marginLeft = w+'px';
	}
	else {
		clearInterval(id);
	}
	},10);
	
}

function my_blur() {
	w = 0;
	id = setInterval(
	function goo() {
		if (w < 30) {
			w = w + 1;
			document.getElementById('in_te').style.marginLeft = w+'px';
		}
		else {
			clearInterval(id);
		}
	}
	);
}


<input id="in_te" type="text" style="margin-left:30px" onFocus="my_focus();" onBlur="my_blur();">


в фирефох функця my_blur не работает, можете сказать почему?
и вообшем как надо сделать такое?


Часовой пояс GMT +3, время: 22:16.