Jump to content
  • 0

Выравнивание высоты блоков при обновлении и resize окна


Vlad_P
 Share

Question

Выравниваю высоту блоков при обновлении страницы, и, соответственно, по изменению размеров.

<script>
        function setEqualSize(classBlocks) {
            var maxHeight = 0;
            $(classBlocks).each(function(){
                if ($(this).height() > maxHeight)
                {
                    maxHeight = $(this).height();
                }
            });

            $(classBlocks).height(maxHeight);            
        }

        $(function($) {
            setEqualSize('.block')            
        });
        $(window).resize(function() {
            q=$('.block').height()
            $('.article-anonses img + a').text(q)
        });
        
    </script>

 

Объясните пожалста! Не работает выравнивание при изменении размеров окна. При этом, если убрать выравнивание при обновлении страницы, начинает работать обновление по resize. Подскажите в чем дело, Ну не понимаю я

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
10 минут назад, by chris сказал:

$(window).resize(function() {
  setEqualSize('.block');
  q=$('.block').height()
  $('.article-anonses img + a').text(q)
});

 

Пардон, это я вписывал высоту, смотрел. изначально все конечно выглядело так

    <script>
        function setEqualSize(classBlocks) {
            var maxHeight = 0;
            $(classBlocks).each(function(){
                if ($(this).height() > maxHeight)
                {
                    maxHeight = $(this).height();
                }
            });

            $(classBlocks).height(maxHeight);            
        }

        $(function($) {
            setEqualSize('.block')            
        });
        $(window).resize(function() {
            setEqualSize('.block')
        });

    </script>

Edited by Vlad_P
Link to comment
Share on other sites

  • 0

Ну, код работает. Высота у дива не будет меняться, т.к программа изменяет высоту дива на его первоначальную высота. Тут $(function($) передавать доллар локально не надо.

Link to comment
Share on other sites

  • 0
13 минуты назад, Igor Schnaider сказал:

Сбросить высоту забыли.


function setEqualSize(classBlocks) {
    var maxHeight = 0;

    $(classBlocks).each(function () {

	$(this).height('auto');		// (!)

        if ($(this).height() > maxHeight) {
            maxHeight = $(this).height();
        }
    });

    $(classBlocks).height(maxHeight);
}

 

Да, так гораздо лучше, Всем спасибо огромное!

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