I'm wanting to create a mouseover so to create a style filter glow?
I can create a standard glow filter on text but the problem may stem around either the DOM on the script pointing at the wrong object or the fact that all sites are saying that to have a glow object for a DIV element you need to adjust the style properties to have a standard width and height!
Relevant Code:
//INHEAD SCRIPT
<script>
function glowtext(){
bunglow.filter="glow(color=white,strength=10)";
}
</script>
//INBODY HTML
<DIV ID="bunglow" class=index1 STYLE="position:absolute; width:200px; height:50px; top:150; left:150;
background:blue ;filter:glow(color=blue,strength=5)" onmouseover="glowtext()"> GLOWING TEXT
<table id=bunglow STYLE="filter:glowcolor=red,Strength=5) onclick="glowtext()">
GLOW TEXT
</TABLE>
</DIV>
I can create a standard glow filter on text but the problem may stem around either the DOM on the script pointing at the wrong object or the fact that all sites are saying that to have a glow object for a DIV element you need to adjust the style properties to have a standard width and height!
Relevant Code:
//INHEAD SCRIPT
<script>
function glowtext(){
bunglow.filter="glow(color=white,strength=10)";
}
</script>
//INBODY HTML
<DIV ID="bunglow" class=index1 STYLE="position:absolute; width:200px; height:50px; top:150; left:150;
background:blue ;filter:glow(color=blue,strength=5)" onmouseover="glowtext()"> GLOWING TEXT
<table id=bunglow STYLE="filter:glowcolor=red,Strength=5) onclick="glowtext()">
GLOW TEXT
</TABLE>
</DIV>