ribbon-corner

1.0.5 • Public • Published

ribbon-corner

Add a ribbon in the corner of your website.

Build Status npm version Dependencies

Screenshot

screenshot

Getting started

Installation

npm install ribbon-corner

In browser:

<script src="/path/to/ribbon-corner.js"></script>

The unpkg provides CDN support for Ribbon corner. You can find the links here.

Usage

Syntax

import { ribbonCorner } from 'ribbon-corner'
ribbonCorner(options)
  • options (optional)
    var defaultOptions = {
        backgroundColor: '#67C23A',
        toCorner: 100, // the distance of ribbon to cornor in px
        height: 50, // height of ribbon in px
        horizontalAlign: 'left',
        text: 'Ribbon Corner',
        textColor: 'white',
        position: 'fixed', // fixed or absolute
        fontSize: 15,
    };

Example

Source code of screenshot

    ribbonCorner({
        backgroundColor: '#67C23A',
        horizontalAlign: 'left',
        toCorner: 200,
        height: 120,
        text: 'At Left',
    });
    ribbonCorner({
        backgroundColor: '#E6A23C',
        horizontalAlign: 'right',
        text: 'At Right',
    });

Readme

Keywords

Package Sidebar

Install

npm i ribbon-corner

Weekly Downloads

10

Version

1.0.5

License

MIT

Unpacked Size

10.6 kB

Total Files

10

Last publish

Collaborators

  • gaoliangim