Text Blinker Component

Overview

The Text Blinker Component is a simple go to way if you want to display your text going on and off in a blinking way. The simple customizable component allows you to display a blinking text with customizable interval.

Key Features & Functionality

  • Customizable blinking interval time for the display text.
  • Customizable text and background color as per necessity.
  • Font size range for better visibility.

How to use it?

We can directly use the component function inside any Appian interface by providing the text value in the display text parameter. Default interval of the text blinking will be 1 second which can be changed between a range of 1 - 10 seconds. You can also change the color of background and the display text by giving in the available Appian styles or using a valid hex code value.
Sample Code
textBlinkDisplayField(
    label: "Text Blinker",
    labelPosition: "ABOVE",
    height: "AUTO",
    displayText: "This is testing component",
    color: "POSITIVE",
    interval: 3,
    fontSize: 25,
    alignText: "LEFT"
)
Anonymous