Jump to content

art13

Newbie
  • Posts

    3
  • Joined

  • Last visited

Everything posted by art13

  1. Понял, спасибо. Вобщем просто функция и последующий ее вызов.
  2. Простите, а вешать через скрипты класс это как?
  3. Хочу сделать изменение цвета тени по нажатию кнопки. Но никак не могу допереть. Может функцией? Объектной модели нет у этих стилей. <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=windows-1251"/> <style type="text/css"> #hw { position: absolute; left: 120px; top: 50px; text-shadow: 2px 2px; color: red; font: 30px impact; } #but { position: absolute; left: 120px; top: 100px; } </style> </head> <body> <div id="hw">Hello world</div> <div id="but"> <table> <tr> <td> <input id="ct" type="text" size="7"/> </td> <td> <input id="cs" type="text" size="7"/> </td> </tr> <tr> <td> <input type="button" value="Цвет текста" name="t" onClick="document.getElementById('hw').style.color=document.getElementById('ct').value;"/> </td> <td> <input type="button" value="Цвет тени" name="s" onClick="document.getElementById('hw').style.text-shadow=document.getElementById('cs').value;"/> </td> </tr> </table> </div> <script language="javascript" type="text/javascript"> /*function sc() { }*/ </script> </body> </html>
×
×
  • 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