Jump to content

KIsteN

Newbie
  • Posts

    2
  • Joined

  • Last visited

Everything posted by KIsteN

  1. document.getElementById("textpole11").style.opacity=0.8 вместо document.all.textpole11.style.opacity=0.8 ? Неа. Не работает.
  2. Подскажите пожалуста чайнику, почему картинка не меняет прозрачность в опере? Проверял на Opera 9.52, изображение полупрозрачным становится в опере, но вот в скрипте почему-то, задавая другое значение opacity (document.all.textpole11.style.opacity=1.0), изображение не меняет прозрачность. Правильно ли я указал свойство фильтра, присваивая значение прозрачности. Почему в IE изменение прозрачности работает, а в опере нет? Может я в скрипте "сказал" как-то не так? Вот код: <img id="textpole11" border="0" src="Txtpole_top.gif" onmouseover="smenatxt()" onmouseout="smenatxt()" width="518" style="position:absolute; top:0px; left:1px; filter: alpha(opacity=80); opacity: 0.8; -moz-opacity:.8;"> <script>//Скрипт главного меню var flag=false function smenatxt(){ if (flag) { document.all.textpole11.filters["alpha"].opacity=80 document.all.textpole11.style.opacity=0.8 } else { document.all.textpole11.filters["alpha"].opacity=100 document.all.textpole11.style.opacity=1.0 } flag=!flag } </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