Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/martine-dowden/vanilla-retro-js

Vanilla JS UI component library of HTML deprecated tags.
https://github.com/martine-dowden/vanilla-retro-js

javascript webcomponents

Last synced: 3 months ago
JSON representation

Vanilla JS UI component library of HTML deprecated tags.

Awesome Lists containing this project

README

        

# Vanilla Retro JS

Demo: https://martine-dowden.github.io/vanilla-retro-js/

Source: https://github.com/martine-dowden/vanilla-retro-js

NPM: https://www.npmjs.com/package/vanilla-retro-js

## Blink

`import { Blink } from 'vanilla-retro-js/src/blink.js';`

```HTML


Blink




```

## Marquee

`import { Marquee } from 'vanilla-retro-js/src/marquee.js';`

```HTML

Marquee Tag

```

### Properties

- height: number
- width: number
- direction: top | bottom | left | right (default: right)

## Running the Project

```bash
$ npm start
> navigate to http://localhost:8080/
```

## Using Components in an Angular or Vue Project

Per component

in Module or main.js:

```JavaScript
import 'vanilla-retro-js/src/{ componentName.js }';
```

example

```JavaScript
import 'vanilla-retro-js/src/blink.js';
```

Import whole library

```JavaScript
import 'vanilla-retro-js/src/vanilla-retro.js';
```