Javascript-форум (https://javascript.ru/forum/)
-   Общие вопросы Javascript (https://javascript.ru/forum/misc/)
-   -   Замена <style> через скрипт, разрешение экрана? (https://javascript.ru/forum/misc/28599-zamena-style-cherez-skript-razreshenie-ehkrana.html)

kabarginbogdan 26.05.2012 15:06

Замена <style> через скрипт, разрешение экрана?
 
<html>
<head>
<title> test background </title>
<style type="text/css">
html {
height: 100%;
}
body {
background-image: url(bg.jpg);
background-position: left;
background-repeat: no-repeat;
background-size: 1024px 768px;
}
</style>
<script>
ScreenWidth = screen.width;
ScreenHeight = screen.height;
/*alert(ScreenWidth+'x'+ScreenHeight);*/
document.write('<style> body {background-size: '+ScreenWidth+'px '+ScreenHeight'px;} </style>');
</script>
</head>
<body>

</body>
</html>

Вот этот кусочек не пашет:
document.write('<style> body {background-size: '+ScreenWidth+'px '+ScreenHeight'px;} </style>');

Подскажите в чем дело.:help: :help: :help:

vadim5june 26.05.2012 15:16

+в конце пропустили

+ScreenHeight+'px;}

kabarginbogdan 26.05.2012 15:42

вот протупил, спасибо

Deff 26.05.2012 18:15

Вроде как Скрипт не нужен :
<style>
body{
background-size: 100% 100%;
-o-background-size 100% 100%;
-webkit-background-size 100% 100%;
background-image:url(http://uploads.ru/i/4/T/l/4TlFU.png)!important;
}
</style>


Часовой пояс GMT +3, время: 21:26.