Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- @keyframes glow {
- 0% {
- text-shadow: 0 0 15px blue;
- }
- 50% {
- text-shadow: none;
- }
- 100% {
- text-shadow: 0 0 15px blue;
- }
- }
- @-webkit-keyframes glow {
- 0% {
- text-shadow: 0 0 15px blue;
- }
- 50% {
- text-shadow: 0 0 0;
- }
- 100% {
- text-shadow: 0 0 15px blue;
- }
- }
- #glow {
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- -webkit-text-stroke-width: 1px;
- -webkit-text-stroke-color: #000;
- font-weight:bold;
- font-size:2em;
- -webkit-animation: glow 2.0s linear infinite;
- -moz-animation: glow 2.0s linear infinite;
- -ms-animation: glow 2.0s linear infinite;
- -o-animation: glow 2.0s linear infinite;
- animation: glow 2.0s linear infinite;
- }
- </style>
- <div id="glow">
- <strong>
- Glowing Text
- </strong>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement