Pixomar Posted May 16, 2019 Report Share Posted May 16, 2019 In by table report Datapage, I would like the latest data field to blink red and white (automatically when a latest field comes), how do I do it. Quote Link to comment Share on other sites More sharing options...
0 Harbinger Posted May 18, 2019 Report Share Posted May 18, 2019 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 Quote Link to comment Share on other sites More sharing options...
Question
Pixomar
In by table report Datapage, I would like the latest data field to blink red and white (automatically when a latest field comes), how do I do it.
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
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.