Jump to content
  • 0

Определение значения высоты окна и изменение положения ползунка)


anarki
 Share

Question

8 answers to this question

Recommended Posts

  • 0

Попробуй так:

window.onload=function()

{

if (window.height<400) {

window.scroll(0, 155);}

}

или поместить тег в самый конец. Возможно просто скрипт срабатывает до того как у тебя подгрузилась вся страница и следовательно не работает.

и хорошо бы узнать в чем именно проблема. В условии или в действии. Для этого один раз сделай так:

if (window.height<400) alert('bingo');

а второй раз попробуй: window.scroll(0, 155);

и посмотри что именно у тебя не работает.

Link to comment
Share on other sites

  • 0

я определил, что у меня не работает условие window.height<400 ...

пробовал написать document.write(window.height); на экран выводит "undefined"... как ещ? можно определить какое значение высоты у окна браузера(исключая границы и элементы пользовтельского интерфейса)?

Link to comment
Share on other sites

  • 0

Вот так можно еще.

<script language="JavaScript">
var width = 0;
var height = 0;
if (typeof(window.innerWidth) == 'number') {
width = window.innerWidth;
height = window.innerHeight;
} else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) {
width = document.documentElement.clientWidth;
height = document.documentElement.clientHeight;
} else if (document.body && (document.body.clientWidth || document.body.clientHeight)) {
width = document.body.clientWidth;
height = document.body.clientHeight;
}
</script>

Link to comment
Share on other sites

  • 0
О, спасибо!!! Вс? работает!!! Оч благодарен

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

Ну например узнать ширину можно тремя (вышеперичисленными способами).

1) if (window.innerHeight<400)

2) if (document.documentElement.clientHeight<400)

3) if (document.body.clientHeight<400)

Кусок кода представленный выше - это более универсальное средство, которое само распознает каким методом узнавать высоту и ширину окна...:P

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