|
|
|
| Есть форма, как сделать чтобы она при нажатии на кнопку "показать" плавно выпадала?
<head>
<style>
<!--
.fsend{
font-family: Tahoma;
font-size: 8pt;
padding-left: 10px;
margin-right:800;}
.butt1{
font-family: Tahoma; font-size: 8pt; color: #FFFFFF; background-color: #004080
}
-->
</style>
</head>
<div class="fsend">
<a href="#form" onclick=document.getElementById('form').style.display='block';return!1>Показать</a> | <a href="#form" onclick=document.getElementById('form').style.display='none';return!1>Свернуть</a>
<div id="form" style="display:none;background-color:white">
<form name="FormName" action="" method="post">
Имя:<br/>
<input name="Name" type="text" value=""><br/>
Сообщение:<br/>
<textarea name="string" rows="5" cols="16" wrap="soft">
</textarea>
<br/><br/>
<input type="submit" value="Отправить" class="butt1">
<input type="reset" value=" x " class="butt1">
</form>
</div>
</div>
|
| |
|
|