https://github.com/simpart/mofron-comp-ttlhdr
https://github.com/simpart/mofron-comp-ttlhdr
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/simpart/mofron-comp-ttlhdr
- Owner: simpart
- License: mit
- Created: 2016-11-27T12:42:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-07-06T03:31:33.000Z (about 8 years ago)
- Last Synced: 2025-10-18T14:31:33.554Z (9 months ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mofron-comp-ttlhdr
extends component of heaader for mofron.
this component is header for title of page.
please see [here](https://github.com/mofron/mofron) about an overview of mofron.
# Install
```bash
npm install mofron-comp-ttlhdr
```
# Sample
```javascript
let mf = require("mofron");
let Header = require("mofron-comp-ttlhdr");
let hdr = new Header({
/* this is option paramter */
title : 'APP_TITLE',
url : './',
height : 80,
color : new mf.Color(70,70,70)
});
hdr.visible(true);
```