Jump to content
  • 0

Размер окна браузера (не экрана)


Ubhra
 Share

Question

Для контроля ширины блоков использую медиа запросы в CSS.

Они отлично определяют разрешение экрана, но как без js узнать размер окна браузера?

 

P.S. Причем если менять размер размер окна десктопного браузера, то запросы @media screen работают идеально. Мобильный браузер пытаясь имитировать десктопный, уменьшает все так, что шрифт не разобрать. Пытался с помощью (<meta name="viewport" content="width=device-width, initial-scale=1">) исправить, оно просто скалирует не влияя на размер блоков.

Edited by Ubhra
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0
4 минуты назад, klierik сказал:

Для каких целей?

Для мобильного.

Т.е. если сайт просматривается на мобильном, что бы можно было управлять отображением блоков.

Меняю размер только двух блоков, в зависимости от экрана. Беру десктопный браузер за край и "елозю" меняя размер, все работает (особенно с display:flex; замечальные эффекты).

Скрытый текст

@media screen and (min-width:320px) and (max-width:359px){
    body, footer{
        width:320px;
    }
}
@media screen and (min-width:360px) and (max-width:399px){
    body, footer{
        width:360px;
    }
}
@media screen and (min-width:400px) and (max-width:479px){
    body, footer{
        width:400px;
    }
}
@media screen and (min-width:480px) and (max-width:539px){
    body, footer{
        width:480px;
    }
}
@media screen and (min-width:540px) and (max-width:639px){
    body, footer{
        width:540px;
    }
}
@media screen and (min-width:640px) and (max-width:719px){
    body, footer{
        width:640px;
    }
}
@media screen and (min-width:720px) and (max-width:799px){
    body, footer{
        width:720px;
    }
}
@media screen and (min-width:800px) and (max-width:899px){
    body, footer{
        width:800px;
    }
}
@media screen and (min-width:900px) and (max-width:959px){
    body, footer{
        width:900px;
    }
}
@media screen and (min-width:960px) and (max-width:1023px){
    body, footer{
        width:960px;
    }
}
@media screen and (min-width:1024px) and (max-width:1279px){
    body, footer{
        width:1000px;
    }
}
@media screen and (min-width:1280px) and (max-width:1439px){
    body, footer{
        width:1200px;
    }
}
@media screen and (min-width:1440px) and (max-width:1599px){
    body, footer{
        width:1400px;
    }
}
@media screen and (min-width:1600px){
    body, footer{
        width:1500px;
    }
}

 

Link to comment
Share on other sites

  • 0

На реальном устройстве, скорее всего, этих проблем не будет. Хотя я не совсем понимаю саму проблему, так как никакого масштабирования быть не должно. Что-то желаешь не так, а что — не знаю.

Link to comment
Share on other sites

  • 0

В том то и дело. На реальом устройстве медиа запросы не работают.

Почему то в десктопе определяются именно размеры окна браузера, а мобильник отображает сайт как для экрана 1080px при реальных 360px.

В js за это отвечают screen.width и document.body.clientHeight, один запрос на ширину экрана, второй на ширину браузера.

 

Скрытый текст

Screenshot_2017-11-23-12-53-35-007_org.mozilla.firefox.thumb.png.4167cd6fb2d09d619ddef719052fae74.png

 

Вот посмотрите пожалуйста, что не так?

http://test.introdump.net/

Edited by Ubhra
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