3
I got a problem:
On the page http://www.magicforbaby.com.br/, has a banner where I can’t set its size (from div).
But as it takes all 100% of the screen, I took window.innerWidth
from the browser and made my calculations.
For Desktops and Androids goes well. but for Windows Phone does not work. It seems that it even calculates the height but ignores the width
<div class="cycle-slideshow slide"
data-cycle-fx=fadeout
data-cycle-timeout=5000
data-cycle-pause-on-hover="true"
data-cycle-slides="div.slide">
<!-- prev/next links -->
<div class="cycle-prev"></div>
<div class="cycle-next"></div>
<div class="cycle-pager"></div>
<div class="slide">
<img style="width:1024px;height: 640px;" src="_img/_banner/_site/1.jpg" />
</div>
<div class="slide">
<img style="width:1024px;height: 640px;" src="_img/_banner/_site/2.jpg" />
</div>
<div class="slide">
<img style="width:1024px;height: 640px;" src="_img/_banner/_site/3.jpg" />
</div>
<div class="slide">
<img style="width:1024px;height: 640px;" src="_img/_banner/_site/4.jpg" />
</div>
</div>
<script>
largura = (window.innerWidth * 640 ) / 1024;
$( ".slide img" ).css("height",largura);
$( ".banner" ).css("height",largura);
</script>
css of . slide img and . banner
.banner {
display: inline-block;
height: 657px;
}
.slide {
width:100% !important;
}
Result, banner appears distorted.
This above code (indexConteudo.php) is imported on the main page whose code is:
<?php require_once "config.php" ; ?>
<!doctype html>
<html>
<head>
<title><?php echo $constantes->getTituloSite(); ?></title>
<?php require_once("_global/_meta/meta.ini"); ?>
<link rel="shortcut icon" type="image/x-icon" href="_img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="_global/_css/estilo.css">
<link rel="stylesheet" type="text/css" href="_global/_css/site.css">
<link rel="stylesheet" type="text/css" href="_global/_css/menu.css">
<link rel="stylesheet" type="text/css" href="_global/_css/jquery.cycle2.css">
<script type="text/javascript" src="_global/_js/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="_global/_js/jquery.cycle2.min.js"></script>
<!--[if lt IE 9]>-->
<script type="text/javascript" src="_global/_js/css3-mediaqueries.js"></script>
<!--[endif]-->
<script>
window.onload=function(){
$("body").fadeIn("slow");
$(".carregando").fadeOut("slow");
}
</script>
</head>
<body>
<div class="carregando"><img src="_img/carregando.gif"><br>Carregando...</div>
<div class="topo">
<div class="sessoes">
<div class="logo"><img src="_img/logo.png" /></div>
<div class="menu"><?php require_once "_required/menu.php"; ?></div>
</div>
</div>
<div class="conteudo">
<div class="sessoes"><?php require_once "indexConteudo.php"; ?></div>
</div>
<div class="base">
<div class="sessoes"><?php require_once "_required/base.php"; ?></div>
</div>
<div class="final">
<div class="sessoes"><?php require_once "_required/final.php"; ?></div>
</div>
</body>
</html>
Have you tested with
screen.width
?– Sergio
already, gives a value different from the screen: 317
– Carlos Rocha
added: <meta name="viewport" content="width=device-width, initial-Scale=1.0"> ? I’ve had a problem like this and adding it worked as expected.
– edson alves
Instead of using javascript, you can try using the @media property of css, so you can define custom css for each screen size, thus avoiding javascript incompatibility issues.
– Will Ramos