React Blink Component
Elango Sundar

Elango Sundar @10secondsofcode

About: Fullstack developer in ReactJs, Symfony4, NodeJs, Javascript, html5, css3, php and AWS.

Location:
India
Joined:
Oct 26, 2018

React Blink Component

Publish Date: Sep 17 '19
10 3

React Blink

This reusable React component will manage to blink any text and changing the text color and font size if we need.

Blink takes plain HTML tags and outputs plain HTML tags. It's dead simple, and React beginner friendly.

Example

import React, { Component } from "react";
import Blink from 'react-blink-text';

class Application extends Component {
  render() {
    return (
      <div className="Application">
        <Blink color='blue' text='TestReactApp' fontSize='20'>
          Testing the Blink
        </Blink> 
      </div>
    );
  }
}
export default Application;

Features

  1. Supports all html tags : H1, H2, h3,..,etc., Span, Div, A Href tag.
  2. Supports all different types of colors
  3. Supports server-side rendering.

Installation

Yarn:

yarn add react-blink-text

Npm:

npm install --save react-blink-text

Repo Link:

Link : https://github.com/10secondsofcode/react-blink-text
Create Issue : https://github.com/10secondsofcode/react-blink-text/issues/new

Comments 3 total

Add comment