Jump to content
  • 0

Blinking text on the field


Pixomar

Question

1 answer to this question

Recommended Posts

  • 0

There is an HTML tag for that, and it is called <blink></blink>, there is also a Javascript way to do that if you're familiar then this might help: https://www.wikihow.com/Make-Text-Blink-in-HTML

I am not yet certain if this can be achieved in CSS but you can insert a header/footer on your report and disable the enable HTML editor from the advanced tab.

Then in CSS, you can have the following:

.blinking{
	animation:blinkingText 0.8s infinite;
}
@keyframes blinkingText{
	0%{		color: #000;	}
	49%{	color: transparent;	}
	50%{	color: transparent;	}
	99%{	color:transparent;	}
	100%{	color: #000;	}
}

 

Instead of .blinking, you can select the Class or any attribute of the object you want to style, I haven't tested this code yet but, I definitely will test later.

 

Let me know if this helps

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...