All Projects → skipjack → react-banner

skipjack / react-banner

Licence: MIT license
A dynamic banner/header component.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to react-banner

React Native Stretchy
🤸‍♀️A ReactNative scrollable stretchy header component
Stars: ✭ 216 (+764%)
Mutual labels:  header
SimpleSlider
A simple slider allows you to easily use.
Stars: ✭ 78 (+212%)
Mutual labels:  banner
student-api-graphql
A GraphQL Wrapper for Ellucian's Banner Student REST API
Stars: ✭ 19 (-24%)
Mutual labels:  banner
banner
android 轮播图控件
Stars: ✭ 10 (-60%)
Mutual labels:  banner
Banner
🔥🔥🔥Android Compose Banner!!! 安卓 Compose 版本的 Banner,欢迎大家体验!!!
Stars: ✭ 40 (+60%)
Mutual labels:  banner
PocketMine-Banners
Super Simple PHP based banner generating system
Stars: ✭ 19 (-24%)
Mutual labels:  banner
Copyright Header
© Copyright Header is a utility to manipulate software licenses on source code.
Stars: ✭ 168 (+572%)
Mutual labels:  header
pagination
Aplus Framework Pagination Library
Stars: ✭ 167 (+568%)
Mutual labels:  header
React-Native-top-navbar
This reactnative package provides custom header component for mobile apps. also providing utility method to change statusbar color.
Stars: ✭ 27 (+8%)
Mutual labels:  header
Crazy-Banner
custom banner editor script for Termux
Stars: ✭ 60 (+140%)
Mutual labels:  banner
ViewWorld
自定义View合集,展示各种自定义View/控件。项目包含了自定义Banner轮播图控件,自定义验证码输入框,自定义TabLayout等控件,持续更新中😉😉😉
Stars: ✭ 94 (+276%)
Mutual labels:  banner
AndroidModule
Android 通用模块封装
Stars: ✭ 110 (+340%)
Mutual labels:  banner
Banner
🚩 Nepxion Banner is a colorful banner display component which can show an ascii image and project informations like versions, links and so on, based on Taobao Text 彩色旗标生成器
Stars: ✭ 17 (-32%)
Mutual labels:  banner
React Native Header View
Fully customizable Header View with multiple design options for React Native.
Stars: ✭ 221 (+784%)
Mutual labels:  header
RTHeadedColumnView
Multi-column content with a common header view
Stars: ✭ 12 (-52%)
Mutual labels:  header
React Native Head Tab View
Add collapsible headers to your tab-view components.
Stars: ✭ 171 (+584%)
Mutual labels:  header
AKGADWrapper
A wrapper for a UIViewController with a GADBannerView at the bottom
Stars: ✭ 55 (+120%)
Mutual labels:  banner
campaign-manager
The Camapign Management UI for RTB4Free, the open source bidder / DSP.
Stars: ✭ 24 (-4%)
Mutual labels:  banner
42header.vim
Add and update the 42 comment header at the top of your files
Stars: ✭ 15 (-40%)
Mutual labels:  header
StackViewLayout
StackViewLayout is a slide card view
Stars: ✭ 24 (-4%)
Mutual labels:  banner

NPM Version Standard Version

react-banner

A flexible banner component, available as a react plugin.

Installation

This component can be installed from npm:

npm install react-banner

You can also grab the minified JavaScript and CSS straight from /dist and include it with a <script> tag.

Usage

The following example shows the most basic setup possible. Note that it assumes a webpack environment, with a pre-processor like babel enabled to allow ES6+ and JSX...

import React from 'react'
import Banner from 'react-banner'
import 'react-banner/dist/style.css'

const Example = props => {
    return (
        <Banner
            logo="React Banner"
            url={ window.location.pathname }
            items={[
                { "content": "Example Link", "url": "/example" },
                { "content": "Another", "url": "/another" },
                {
                    "content": "Link w/ Children",
                    "url": "/children",
                    "children": [
                        { "content": "John", "url": "/children/john" },
                        { "content": "Jill", "url": "/children/jill" },
                        { "content": "Jack", "url": "/children/jack" }
                    ]
                }
            ]}
        />
    )
}

See the full documentation for more in-depth usage, demos, and examples on how to integrate it with other open-source react components like react-headroom and react-sidebar.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].