The effect I am after is a highlight that triggers on page landing on a select piece of text. Let's target element id="highlight me"
. The highlight can glow twice around the targeted container and then disappears. It is best articulated visually: video demonstration here. A JavaScript solution is acceptable.
<!DOCTYPE html>
<html lang="en">
<head>
<script>
// Some javascript to make the animation.
</script>
</head>
<body>
<div id="highlight-me">A bit of text needing attention on page landing.</div>
</body>
</html>
Maximum cross-browser support is important.