parks
Постоялец
- Регистрация
- 18 Сен 2008
- Сообщения
- 439
- Реакции
- 100
- Автор темы
- #1
Подскажите скрипт выезжающей формы , аналог
Для просмотра скрытого содержимого вы должны войти или зарегистрироваться.
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Selector</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function(){
//при клике на поле, прибавляем к ширине 500
$('#search-field').click(function() {
$(this).animate({right: "0", width: "+=500"}, 500);
});
//при клике не на поле, отнимаем от ширины 500
$("#search-field").blur(function(){
$(this).animate({right: "0", width: "-=500"}, 500);
});
});
</script>
</head>
<body>
<form id="search-form" method="get" action="/search/">
<input id="search-field" name="q" value="Поиск по сайту" type="text" style="position:relative;float:right;">
</form>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Selector</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function(){
//при клике на поле, ширина 500
$('#search-field').click(function() {
$(this).animate({right: "0", width: "500px"}, 500);
});
//при клике не на поле, ширина 200
$("#search-field").blur(function(){
$(this).animate({right: "0", width: "200px"}, 500);
});
});
</script>
</head>
<body>
<form id="search-form" method="get" action="/search/">
<input id="search-field" name="q" value="Поиск по сайту" type="text" style="position:relative;right:0;float:right;width:200px;">
</form>
</body>
</html>