All Projects → steven-mercatante → react-timeline

steven-mercatante / react-timeline

Licence: other
The easiest way to add a responsive and customizable timeline to React apps

Programming Languages

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

Projects that are alternatives of or similar to react-timeline

bootstrap-grid-ms
Missing grid range in Bootstrap 3, micro-small from 480-767px.
Stars: ✭ 34 (-50%)
Mutual labels:  responsive, responsive-grid, responsive-layout
Layout
Flutter | Create responsive layouts for mobile, web and desktop
Stars: ✭ 312 (+358.82%)
Mutual labels:  responsive, responsive-layout
gutter-grid
A Sass flexbox based grid system that is able to replicate CSS grid-gap in IE11
Stars: ✭ 18 (-73.53%)
Mutual labels:  responsive, responsive-grid
Responsiveframework
Easily make Flutter apps responsive. Automatically adapt UI to different screen sizes. Responsiveness made simple. Demo: https://gallery.codelessly.com/flutterwebsites/minimal/
Stars: ✭ 476 (+600%)
Mutual labels:  responsive, responsive-layout
react-context-responsive
A package that provides a responsive context to your application, using React Context API.
Stars: ✭ 25 (-63.24%)
Mutual labels:  responsive, responsive-layout
science-fiction-magazines-blog
Blog template (concept) is inspired by stylish science fiction magazines of the 80-90s.
Stars: ✭ 24 (-64.71%)
Mutual labels:  responsive, responsive-layout
React Native Responsive Grid
Bringing the Web's Responsive Design to React Native
Stars: ✭ 369 (+442.65%)
Mutual labels:  responsive, responsive-layout
responsive-css-grid
A super-lightweight, responsive, 8-column grid based on box-sizing
Stars: ✭ 46 (-32.35%)
Mutual labels:  responsive, responsive-grid
vue-light-timeline
A mobile first lightweight vue timeline components
Stars: ✭ 88 (+29.41%)
Mutual labels:  timeline, timeline-component
vertical-timeline-component-react
A Timeline Component for React.js
Stars: ✭ 42 (-38.24%)
Mutual labels:  timeline, timeline-component
notifyme
react-notification-timeline is a react based component helps in managing the notification in time-based manner.
Stars: ✭ 94 (+38.24%)
Mutual labels:  timeline, timeline-component
React Chrono
🕜 Modern Timeline component for React
Stars: ✭ 2,873 (+4125%)
Mutual labels:  timeline, timeline-component
Responsive Bootstrap Toolkit
Responsive Bootstrap Toolkit allows for easy breakpoint detection in JavaScript
Stars: ✭ 364 (+435.29%)
Mutual labels:  responsive, responsive-layout
React Container Query
📦 Modular responsive component
Stars: ✭ 788 (+1058.82%)
Mutual labels:  responsive, responsive-layout
react-native-beautiful-timeline
Fully customizable, beautifully designed Timeline for React Native.
Stars: ✭ 111 (+63.24%)
Mutual labels:  timeline, timeline-component
mesh
A page builder, simplified. Get the most flexibility to display content by adding multiple content sections within Pages, Posts, or Custom Post Types.
Stars: ✭ 44 (-35.29%)
Mutual labels:  responsive, responsive-grid
Tech-Writing-Linktree
✨ tech writer portfolio in the style of linktree ✨
Stars: ✭ 26 (-61.76%)
Mutual labels:  responsive
guillotine
jQuery plugin to crop images within an area (fully responsive), allowing to drag (touch support), zoom and rotate.
Stars: ✭ 321 (+372.06%)
Mutual labels:  responsive
tb-grid
tb-grid is a super simple and lightweight 12 column responsive grid system utilizing css grid.
Stars: ✭ 19 (-72.06%)
Mutual labels:  responsive
qt-quick-responsive-helper
A simple toolbar for QtQuick based applications, to let developers test different resolutions and dpi settings easily. It was made to be integrated with minimal effort (only one QML file), and to be configurable for your specific usage.
Stars: ✭ 26 (-61.76%)
Mutual labels:  responsive

React Timeline

npm badge travis badge

The easiest way to add responsive and customizable timelines to React apps.

View the documentation for detailed instructions and demos.

Installation

npm install @merc/react-timeline
# or
yarn add @merc/react-timeline

Usage

import React from 'react';
import {
  Timeline,
  Events,
  UrlButton,
  ImageEvent,
  TextEvent,
  YouTubeEvent,
} from '@merc/react-timeline';

export default function App() {
  return (
    <Timeline>
      <Events>
        <TextEvent date="1/1/19" text="**Markdown** is *supported*" />

        <ImageEvent
          date="4/13/19"
          text="You can embed images..."
          src="https://res.cloudinary.com/dovoq8jou/image/upload/v1564772194/jellyfish.jpg"
          alt="jellyfish swimming"
          credit="Photo by [@tavi004](https://unsplash.com/@tavi004)"
        >
          <div>
            <UrlButton href="https://unsplash.com/search/photos/undersea">
              View more undersea photos
            </UrlButton>
          </div>
        </ImageEvent>

        <YouTubeEvent
          date="6/18/19"
          id="6UnRHtwHGSE"
          name="General Tso's Chicken recipe"
          text="... and YouTube videos!"
        />
      </Events>
    </Timeline>
  );
}
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].