Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6338225
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T19:24:06+00:00 2026-05-24T19:24:06+00:00

I haven’t really been able to find any good simple tutorials an animating a

  • 0

I haven’t really been able to find any good simple tutorials an animating a glow effect. How do I animate glowing on text?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T19:24:08+00:00Added an answer on May 24, 2026 at 7:24 pm

    If you want to just use CSS3, you don’t even have to use any jQuery/JavaScript. Just do this in your CSS:

    .confirm_selection {
        -webkit-transition: text-shadow 0.2s linear;
        -moz-transition: text-shadow 0.2s linear;
        -ms-transition: text-shadow 0.2s linear;
        -o-transition: text-shadow 0.2s linear;
        transition: text-shadow 0.2s linear;
    }
    .confirm_selection:hover {
        text-shadow: 0 0 10px red; /* replace with whatever color you want */
    }
    

    Here’s the fiddle: http://jsfiddle.net/zenjJ/

    If you want the element to run on its own (without hovering), do this:

    CSS:

    .confirm_selection {
        -webkit-transition: text-shadow 1s linear;
        -moz-transition: text-shadow 1s linear;
        -ms-transition: text-shadow 1s linear;
        -o-transition: text-shadow 1s linear;
        transition: text-shadow 1s linear;
    }
    .confirm_selection:hover,
    .confirm_selection.glow {
        text-shadow: 0 0 10px red;
    }
    

    JavaScript:

    var glow = $('.confirm_selection');
    setInterval(function(){
        glow.toggleClass('glow');
    }, 1000);
    

    You can play around with the timing in the CSS/JavaScript to get the exact effect you’re looking for.

    And finally, here’s the fiddle: http://jsfiddle.net/dH6LS/


    Update Oct. 2013: being that all major browsers now support CSS animations, all you need is this:

    .confirm_selection {
        animation: glow .5s infinite alternate;
    }
    
    @keyframes glow {
        to {
            text-shadow: 0 0 10px red;
        }
    }
    
    .confirm_selection {
        font-family: sans-serif;
        font-size: 36px;
        font-weight: bold;
    }
    <span class="confirm_selection">
    [ Confirm Selection ]
    </span>

    Here’s the fiddle: http://jsfiddle.net/dH6LS/689/

    Don’t forget to include all the different vendor prefixes in production.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I haven't been able to find a very good way of getting 10 random
I haven't been able to find authorative explanations, microformats or guidelines for the following,
I haven't been able to find what these Xcode icons mean. Some you can
I haven't been able to find a straight answer on this. Can anyone tell
I haven't been able to solve my problem searching through Stack. I have my
I haven't been able to solve this prolog exercise. I was hoping someone here
I haven't seen any questions relating to GNU autoconf/automake builds, but I'm hoping at
I haven't really done much on this side of project development so please forgive
I haven't made any thorough analysis of which implementation of PHP is the best
I haven't found any information on MSDN regarding this problem. If we create an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.