Say for example I have the following code:

HTML:

<ul>
    <li>
        <a>
            <span class="title">Home</span>
            <span class="description">My House</span>
        </a>
    </li>
    <li>
        <a>
            <span class="title">About</span>
            <span class="description">Foo</span>
        </a>
    </li>
</ul>

How can i make ONLY the title class glow, as in an outer glow effect when the li element is hovered over.

I found this plugin: http://nakajima.github.com/jquery-glow/, but i cant figure out how to make it work to my needs. EDIT: It isn't really what i'm looking for as it relies on text-shadow.

I wanted this to work in ie7+ therefore i can't really use text shadow.<

link|improve this question

show CSS............... – Max Jun 16 '11 at 12:48
i fail to see how the css is relevent? – Jai Jun 16 '11 at 12:49
Can you please throw some light on why you aren't able to figure out how to make the jquery-glow plugin to work ? The README here - github.com/nakajima/jquery-glow looks simple enough to me. – Dhruva Sagar Jun 16 '11 at 12:54
Don't worry about that css jai, I don't know why you need it either. – Thomas Clayson Jun 16 '11 at 13:00
i can get it to work, but i cant get it to glow when i want it to, it only glows when the text itself is hovered. I think perhaps that plugin is a dead end considering what Thomas said. Does anyone know anything that might work without text shadow so that it will work in ie7? – Jai Jun 16 '11 at 13:08
feedback

3 Answers

up vote 1 down vote accepted

The bit of that code (the link you posted) that you're interested in is this:

$(this).animate({
        color: TO_GLOW_TEXT_COLOR,
        textShadow: {
          begin: true,
          color: TO_GLOW_HALO_COLOR,
          radius: GLOW_RADIUS
        }
      }, DURATION);

That makes the text glow. (change the uppercase bits). And this makes it fade again:

$(this).animate({
        color: ORIGINAL_COLOR,
        textShadow: {
          begin: false,
          color: TO_GLOW_HALO_COLOR,
          radius: GLOW_RADIUS
        }
      }, DURATION);

So you can just do a normal hover() on those links now you know the secret: (this will test for a hover on the a element and ONLY glow the span.title element).

$('ul li a').hover(function(){
    $(this).find('span.title').animate({.....}); // fade in
},
function(){
    $(this).find('span.title').animate({.....}); // fade out
});

The problem - all its doing is setting the textShadow using jquery instead of CSS, so therefore this won't work in IE7 if textShadow doesn't work.

PS: the link you posted doesnt work in firefox either - unless my firefox is broken.

link|improve this answer
any idea why it doesn't work in firefox? – Jai Jun 16 '11 at 13:10
no idea. the links animate the colour change, but theres no text-shadow on them - no glow as it were. – Thomas Clayson Jun 16 '11 at 13:42
feedback
$("li").hover(function()
{
    //mouse over
    var s = $(this).children("a").children("span");

    for(element in s)
    {
        if(element.hasClass("title"))
        {
            //add glow to element
        }
    }
},
function()
{
    //remove glow here in a similar way
});

Also note that if your markup is consistent then you can just select the first element instead of looping through them all so you would simply add the glow to s[0]

I think find maybe even more suited for your purpose instead of chaining the children() calls. http://api.jquery.com/find/

link|improve this answer
feedback

Are you asking "How do I make things glow?" or are you asking "How do I target the glow to the element I want?"

If you want the latter I'd do it this way:

$(document).ready(function(){
        $('li').hover(
            function(){
                $(this).find('.title').addClass('glow');
            },function(){
                $(this).find('.title').removeClass('glow');
            }
        );
});

Presuming that adding the "glow" class is sufficient to make the title element glow.

link|improve this answer
ha, i can see my question wasn't phrased that well, I'm more asking how can i make text glow without text-shadow, if its possible, so that a glow can be achieved in ie (7+). – Jai Jun 16 '11 at 13:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.