Kai
Kai

Reputation: 53

Glow effect with background color using jQuery

How can I add a subtle "glow" effect to a div element that will glow all the time/permanently, right after the page load, not just when hovered?

Unfortunately, the client wants me to make this work in IE7+.

Upvotes: 2

Views: 6076

Answers (2)

pixelfreak
pixelfreak

Reputation: 17834

If it should glow permanently all the time, why use Javascript/jQuery at all? This could be done purely using CSS, either using CSS3 box-shadow to simulate glow or using images.

Here's a CSS3 example

To animate bg-color, check out this post

Upvotes: 2

Joe Flynn
Joe Flynn

Reputation: 7204

Have you considered using an animated gif?

Match the solution to the client.

Upvotes: 4

Related Questions