Замена <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: |
+в конце пропустили
+ScreenHeight+'px;} |
вот протупил, спасибо
|
Вроде как Скрипт не нужен :
<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. |