Jump to content
  • 0

Text-shadow или box-shadow по кнопке


art13
 Share

Question

Хочу сделать изменение цвета тени по нажатию кнопки. Но никак не могу допереть. Может функцией? Объектной модели нет у этих стилей.

<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>

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

document.getElementById('').style.textShadow = 'black 1px 1px 2px';

В чем проблема?

Вот только не знаю что делать, если такой стиль поддерживается браузером только хаками.

Можно например заранее создать нужные стили, а потом переключать их у самого элемента. Если вариантов цвета не много.

Edited by Odrin
Link to comment
Share on other sites

  • 0

Простите, а вешать через скрипты класс это как?


function hasClass(ele,cls) {
return ele.className.match(new RegExp('(\\s|^)'+cls+'(\\s|$)'));
}

function addClass(ele,cls) {
if (!this.hasClass(ele,cls)) ele.className += " "+cls;
}

function removeClass(ele,cls) {
if (hasClass(ele,cls)) {
var reg = new RegExp('(\\s|^)'+cls+'(\\s|$)');
ele.className=ele.className.replace(reg,' ');
}
}

//call the functions
addClass(document.getElementById("test"), "test");
removeClass(document.getElementById("test"), "test");

Edited by stars
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • 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