Jump to content

reutovo

Newbie
  • Posts

    2
  • Joined

  • Last visited

reutovo's Achievements

Explorer

Explorer (1/14)

0

Reputation

  1. Если вопрос ко мне, то в переменной - l, отрицательное число оставалось после вычисления. Скобки в данном случаем обеспечили положительный результат вычисления. Можно было и так написать: <script type="text/javascript"> onload = onresize = function() { return document.getElementById('login-box').style.marginLeft = document.body.clientHeight/document.body.clientWidth < .67 ? (document.body.clientWidth/2)+(((document.body.clientHeight*0.9-20)*3/2)/2)-320+'px' : (document.body.clientWidth*0.95)-320+'px'; }; </script>
  2. Как-то так должно быть <script type="text/javascript"> onload = onresize = function() { var m = (document.body.clientWidth/2)+(((document.body.clientHeight*0.9-20)*3/2)/2)-320; var l = (document.body.clientWidth*0.95)-320; var f = document.getElementById('login-box').style.marginLeft = (document.body.clientHeight/document.body.clientWidth) < .67 ? m+'px' : l+'px'; } </script>
×
×
  • 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