Jump to content
  • 0

Как обратить изменения?


SEObomj
 Share

Question

Код:

<script>
$(document).ready(function(){
$(".button").click(function(){
$(".hide").slideToggle("slow");
$(".admin").animate( { height:'40px' }, { queue:false, duration:600 } );
$(this).toggleClass("active");
});
});
</script>

<div class="admin">

<a href="#" class="button" id="ac"><span></span>свернуть</a>
<span class="hide">
...
</span>

</div>

При нажатии кнопки содержимое .hide плавно прячется и размеры родительского div'a подстраиваются по высоте. При повторном нажатии на кнопку содержимое .hide появляется. А как вернуть старое значение высоты для .admin при повторном нажатии?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Я ниче не понял ;) Запоминать начальное значение для .admin ? Тогда как будет выглядеть функция? (там же получается меняем не css, а переменную) В общем для меня это еще более сложный вариант)

Завтра еще попробую конструкцию if-else.

Link to comment
Share on other sites

  • 0

Там у .admin картинка бэкграундом, так что там помимо высоты будет еще фон меняться. В любом случае, даже если я с костылями переверстаю так, чтобы избавиться от картинки в фоне, то нужно будет у этого блока менять css, чтобы без блока .hide он смотрелся нормально.

Пробовал if-else, видимо где-то я накосячил так как по прежнему нифига не работает :)

<script>
$(document).ready(function(){
$(".hide").click(function(){
$(".hide").slideToggle("slow");
$(".admin_panel").animate( { height:'40px' }, { queue:false, duration:600 } );

});
$(document.body).click(function () {
if ($(".hide").is(":hidden")) {
$(".admin").animate( { height:'40px' }, { queue:false, duration:600 } );
} else {
$(".admin").animate( { height:'106px' }, { queue:false, duration:600 } );
}
});
$(this).toggleClass("active");
});
</script>

Помогите плиз, никак не могу разобраться((

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy