leonardocdc Posted June 7, 2004 Report Share Posted June 7, 2004 Aí galera,beleza? Estou com um problema. Preciso de um script que verifique se a tela é 800 ou 1024 em php. É que dependendo da resolução, a imagem background muda. Alguém pode me ajudar? Leonardo Portilho Quote Link to comment Share on other sites More sharing options...
0 Guest Atentado Posted June 7, 2004 Report Share Posted June 7, 2004 Isso é javascript filho! Quote Link to comment Share on other sites More sharing options...
0 leonardocdc Posted June 7, 2004 Author Report Share Posted June 7, 2004 Isso é javascript filho! estou ligado. Mas é que eu preciso mudar uma figura. Isso é em php. Como eu faço pra printar a figura diferente em Javascript? Tentei o document.writeln mas tb não deu certo. Quote Link to comment Share on other sites More sharing options...
0 julioromano Posted June 7, 2004 Report Share Posted June 7, 2004 <script language="javascript"> function resolucao(){ if (screen.width == 800){ document.write('<? //PHP ?>'); } else if (screen.width == 1024){ document.write('<? //PHP ?>'); } } </script> Quote Link to comment Share on other sites More sharing options...
0 Julio Abdala Posted March 18, 2014 Report Share Posted March 18, 2014 pessoal, fiz um script para retornar a resolução de tela em php e vou postar para ajudar quem precisar: - no mesmo arquivo .php faça os dois seguintes comandos abaixo, na ordem: <script type="text/javascript"> var alturaTela = screen.Width; var larguraTela = screen.Height; if (alturaTela == 768) { <?php define("scAlturaTela", 768); ?> } else if (alturaTela == 720 ) { <?php define("scAlturaTela", 720); ?> } else { <?php define("scAlturaTela", 640); ?> }; if (larguraTela == 1366) { <?php define("scLarguraTela", 1366); ?> } else if (larguraTela == 1360 ) { <?php define("scLarguraTela", 1360); ?> } else if (larguraTela == 1280 ) { <?php define("scLarguraTela", 1280); ?> } else if (larguraTela == 1024 ) { <?php define("scLarguraTela", 1024); ?> } else { <?php define("scLarguraTela", 860); ?> }; </script> <?php function larguraTela() { return scLarguraTela; } function alturaTela() { return scAlturaTela; } ?> espero ter ajudado. Abraço Quote Link to comment Share on other sites More sharing options...
Question
leonardocdc
Aí galera,
beleza? Estou com um problema. Preciso de um script que verifique se a tela é 800 ou 1024 em php. É que dependendo da resolução, a imagem background muda. Alguém pode me ajudar?
Leonardo Portilho
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.